diff options
| author | Joakim Verona | 2011-06-26 22:00:24 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-06-26 22:00:24 +0200 |
| commit | 76d08552619c83268f1353f449099f50ed6f93fa (patch) | |
| tree | 321a375628d83d5c8aeea5876cf375ec7ad93f58 /src/alloc.c | |
| parent | 9fa0e291e866fb7945e18cd2ad8514090c13d510 (diff) | |
| parent | 5b66d427c05eba5493c27da28c460a129b4203cc (diff) | |
| download | emacs-76d08552619c83268f1353f449099f50ed6f93fa.tar.gz emacs-76d08552619c83268f1353f449099f50ed6f93fa.zip | |
first working example of mvc. multiple views of a slider are kept in sync
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. |