diff options
| author | Juanma Barranquero | 2011-06-24 23:25:22 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-06-24 23:25:22 +0200 |
| commit | cd3520a41df21d80a9d894c58af2daba23c8dd24 (patch) | |
| tree | 945eaef322c65471833954ddce161a7a913ee3c8 /src/alloc.c | |
| parent | 7d0da90e7b98f5c09df82be9985cc27d30adea07 (diff) | |
| download | emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.tar.gz emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.zip | |
Move DEFSYM to lisp.h and use everywhere.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/alloc.c b/src/alloc.c index 69623d103c3..43befd722bb 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -6251,8 +6251,7 @@ do hash-consing of the objects allocated to pure space. */); | |||
| 6251 | DEFVAR_LISP ("post-gc-hook", Vpost_gc_hook, | 6251 | DEFVAR_LISP ("post-gc-hook", Vpost_gc_hook, |
| 6252 | doc: /* Hook run after garbage collection has finished. */); | 6252 | doc: /* Hook run after garbage collection has finished. */); |
| 6253 | Vpost_gc_hook = Qnil; | 6253 | Vpost_gc_hook = Qnil; |
| 6254 | Qpost_gc_hook = intern_c_string ("post-gc-hook"); | 6254 | DEFSYM (Qpost_gc_hook, "post-gc-hook"); |
| 6255 | staticpro (&Qpost_gc_hook); | ||
| 6256 | 6255 | ||
| 6257 | DEFVAR_LISP ("memory-signal-data", Vmemory_signal_data, | 6256 | DEFVAR_LISP ("memory-signal-data", Vmemory_signal_data, |
| 6258 | doc: /* Precomputed `signal' argument for memory-full error. */); | 6257 | doc: /* Precomputed `signal' argument for memory-full error. */); |
| @@ -6266,11 +6265,8 @@ do hash-consing of the objects allocated to pure space. */); | |||
| 6266 | doc: /* Non-nil means Emacs cannot get much more Lisp memory. */); | 6265 | doc: /* Non-nil means Emacs cannot get much more Lisp memory. */); |
| 6267 | Vmemory_full = Qnil; | 6266 | Vmemory_full = Qnil; |
| 6268 | 6267 | ||
| 6269 | staticpro (&Qgc_cons_threshold); | 6268 | DEFSYM (Qgc_cons_threshold, "gc-cons-threshold"); |
| 6270 | Qgc_cons_threshold = intern_c_string ("gc-cons-threshold"); | 6269 | DEFSYM (Qchar_table_extra_slots, "char-table-extra-slots"); |
| 6271 | |||
| 6272 | staticpro (&Qchar_table_extra_slots); | ||
| 6273 | Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots"); | ||
| 6274 | 6270 | ||
| 6275 | DEFVAR_LISP ("gc-elapsed", Vgc_elapsed, | 6271 | DEFVAR_LISP ("gc-elapsed", Vgc_elapsed, |
| 6276 | doc: /* Accumulated time elapsed in garbage collections. | 6272 | doc: /* Accumulated time elapsed in garbage collections. |