From: Richard M. Stallman Date: Tue, 31 Jan 1995 20:16:07 +0000 (+0000) Subject: Fix previous change. X-Git-Tag: emacs-19.34~5243 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5de41b1dfec14fba45d3b74448f3c9904a573530;p=emacs.git Fix previous change. --- diff --git a/src/emacs.c b/src/emacs.c index 764e0734569..d2408cd73bd 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -469,12 +469,6 @@ main (argc, argv, envp) mapin_data (file); } -#ifdef REL_ALLOC - /* Make some hysteresis in malloc - if it has to get its space from the relocating allocator. */ - __malloc_extra_blocks = 32; -#endif - #ifdef LINK_CRTL_SHARE #ifdef SHAREABLE_LIB_BUG /* Bletcherous shared libraries! */ @@ -490,6 +484,15 @@ main (argc, argv, envp) #endif /* LINK_CRTL_SHARE */ #endif /* VMS */ +#ifdef REL_ALLOC + /* Make some hysteresis in malloc + if it has to get its space from the relocating allocator. */ + { + extern int __malloc_extra_blocks; + __malloc_extra_blocks = 32; + } +#endif + /* Record (approximately) where the stack begins. */ stack_bottom = &stack_bottom_variable;