]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Tue, 31 Jan 1995 20:16:07 +0000 (20:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 31 Jan 1995 20:16:07 +0000 (20:16 +0000)
src/emacs.c

index 764e0734569da8f84975658af68b180af8e5ced0..d2408cd73bdda5c3d53c3c8dc546477abb0f8d73 100644 (file)
@@ -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;