# HG changeset patch # User Richard M. Stallman # Date 791583367 0 # Node ID db11ebed6573a7a46721e5522d864ad0cee570ee # Parent d761a113d9a86a669cf995ae80accc8c5d536f57 Fix previous change. diff -r d761a113d9a8 -r db11ebed6573 src/emacs.c --- a/src/emacs.c Tue Jan 31 20:10:07 1995 +0000 +++ b/src/emacs.c Tue Jan 31 20:16:07 1995 +0000 @@ -469,12 +469,6 @@ 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 @@ #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;