From 5de41b1dfec14fba45d3b74448f3c9904a573530 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 31 Jan 1995 20:16:07 +0000 Subject: [PATCH] Fix previous change. --- src/emacs.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) 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; -- 2.39.5