diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/alloc.c b/src/alloc.c index a074bfe2d72..97c4c45733d 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -31,8 +31,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 31 | #undef INLINE | 31 | #undef INLINE |
| 32 | #endif | 32 | #endif |
| 33 | 33 | ||
| 34 | /* Note that this declares bzero on OSF/1. How dumb. */ | ||
| 35 | |||
| 36 | #include <signal.h> | 34 | #include <signal.h> |
| 37 | 35 | ||
| 38 | #ifdef HAVE_GTK_AND_PTHREAD | 36 | #ifdef HAVE_GTK_AND_PTHREAD |
| @@ -6396,7 +6394,7 @@ This means that certain objects should be allocated in shared (pure) space. */) | |||
| 6396 | DEFVAR_LISP ("post-gc-hook", &Vpost_gc_hook, | 6394 | DEFVAR_LISP ("post-gc-hook", &Vpost_gc_hook, |
| 6397 | doc: /* Hook run after garbage collection has finished. */); | 6395 | doc: /* Hook run after garbage collection has finished. */); |
| 6398 | Vpost_gc_hook = Qnil; | 6396 | Vpost_gc_hook = Qnil; |
| 6399 | Qpost_gc_hook = intern ("post-gc-hook"); | 6397 | Qpost_gc_hook = intern_c_string ("post-gc-hook"); |
| 6400 | staticpro (&Qpost_gc_hook); | 6398 | staticpro (&Qpost_gc_hook); |
| 6401 | 6399 | ||
| 6402 | DEFVAR_LISP ("memory-signal-data", &Vmemory_signal_data, | 6400 | DEFVAR_LISP ("memory-signal-data", &Vmemory_signal_data, |
| @@ -6412,10 +6410,10 @@ This means that certain objects should be allocated in shared (pure) space. */) | |||
| 6412 | Vmemory_full = Qnil; | 6410 | Vmemory_full = Qnil; |
| 6413 | 6411 | ||
| 6414 | staticpro (&Qgc_cons_threshold); | 6412 | staticpro (&Qgc_cons_threshold); |
| 6415 | Qgc_cons_threshold = intern ("gc-cons-threshold"); | 6413 | Qgc_cons_threshold = intern_c_string ("gc-cons-threshold"); |
| 6416 | 6414 | ||
| 6417 | staticpro (&Qchar_table_extra_slots); | 6415 | staticpro (&Qchar_table_extra_slots); |
| 6418 | Qchar_table_extra_slots = intern ("char-table-extra-slots"); | 6416 | Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots"); |
| 6419 | 6417 | ||
| 6420 | DEFVAR_LISP ("gc-elapsed", &Vgc_elapsed, | 6418 | DEFVAR_LISP ("gc-elapsed", &Vgc_elapsed, |
| 6421 | doc: /* Accumulated time elapsed in garbage collections. | 6419 | doc: /* Accumulated time elapsed in garbage collections. |