diff options
| author | Andrea Corallo | 2019-12-07 18:19:00 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-01-01 11:38:12 +0100 |
| commit | a248dfe2c3341ed73de38c2feea64ec12f053aaa (patch) | |
| tree | 7b0f352051a5cfcfe889e4b8d654edfc68ba1a5e /src/alloc.c | |
| parent | 48f5530e7922e4c46db1c4ab82b1c3532db724c9 (diff) | |
| download | emacs-a248dfe2c3341ed73de38c2feea64ec12f053aaa.tar.gz emacs-a248dfe2c3341ed73de38c2feea64ec12f053aaa.zip | |
native compile interactive functions support
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 00da90464be..5ff0d907915 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -7450,14 +7450,14 @@ N should be nonnegative. */); | |||
| 7450 | static union Aligned_Lisp_Subr Swatch_gc_cons_threshold = | 7450 | static union Aligned_Lisp_Subr Swatch_gc_cons_threshold = |
| 7451 | {{{ PSEUDOVECTOR_FLAG | (PVEC_SUBR << PSEUDOVECTOR_AREA_BITS) }, | 7451 | {{{ PSEUDOVECTOR_FLAG | (PVEC_SUBR << PSEUDOVECTOR_AREA_BITS) }, |
| 7452 | { .a4 = watch_gc_cons_threshold }, | 7452 | { .a4 = watch_gc_cons_threshold }, |
| 7453 | 4, 4, "watch_gc_cons_threshold", 0, {0}}}; | 7453 | 4, 4, "watch_gc_cons_threshold", {0}, {0}, 0}}; |
| 7454 | XSETSUBR (watcher, &Swatch_gc_cons_threshold.s); | 7454 | XSETSUBR (watcher, &Swatch_gc_cons_threshold.s); |
| 7455 | Fadd_variable_watcher (Qgc_cons_threshold, watcher); | 7455 | Fadd_variable_watcher (Qgc_cons_threshold, watcher); |
| 7456 | 7456 | ||
| 7457 | static union Aligned_Lisp_Subr Swatch_gc_cons_percentage = | 7457 | static union Aligned_Lisp_Subr Swatch_gc_cons_percentage = |
| 7458 | {{{ PSEUDOVECTOR_FLAG | (PVEC_SUBR << PSEUDOVECTOR_AREA_BITS) }, | 7458 | {{{ PSEUDOVECTOR_FLAG | (PVEC_SUBR << PSEUDOVECTOR_AREA_BITS) }, |
| 7459 | { .a4 = watch_gc_cons_percentage }, | 7459 | { .a4 = watch_gc_cons_percentage }, |
| 7460 | 4, 4, "watch_gc_cons_percentage", 0, {0}}}; | 7460 | 4, 4, "watch_gc_cons_percentage", {0}, {0}, 0}}; |
| 7461 | XSETSUBR (watcher, &Swatch_gc_cons_percentage.s); | 7461 | XSETSUBR (watcher, &Swatch_gc_cons_percentage.s); |
| 7462 | Fadd_variable_watcher (Qgc_cons_percentage, watcher); | 7462 | Fadd_variable_watcher (Qgc_cons_percentage, watcher); |
| 7463 | } | 7463 | } |