diff options
| author | Richard M. Stallman | 1995-01-31 20:16:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-31 20:16:07 +0000 |
| commit | 5de41b1dfec14fba45d3b74448f3c9904a573530 (patch) | |
| tree | f0c1992bfbab299153ed6110f6091d3bcec43695 /src | |
| parent | 59f970afba465685cc72b94a9dab0c17fa7e145d (diff) | |
| download | emacs-5de41b1dfec14fba45d3b74448f3c9904a573530.tar.gz emacs-5de41b1dfec14fba45d3b74448f3c9904a573530.zip | |
Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 15 |
1 files 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) | |||
| 469 | mapin_data (file); | 469 | mapin_data (file); |
| 470 | } | 470 | } |
| 471 | 471 | ||
| 472 | #ifdef REL_ALLOC | ||
| 473 | /* Make some hysteresis in malloc | ||
| 474 | if it has to get its space from the relocating allocator. */ | ||
| 475 | __malloc_extra_blocks = 32; | ||
| 476 | #endif | ||
| 477 | |||
| 478 | #ifdef LINK_CRTL_SHARE | 472 | #ifdef LINK_CRTL_SHARE |
| 479 | #ifdef SHAREABLE_LIB_BUG | 473 | #ifdef SHAREABLE_LIB_BUG |
| 480 | /* Bletcherous shared libraries! */ | 474 | /* Bletcherous shared libraries! */ |
| @@ -490,6 +484,15 @@ main (argc, argv, envp) | |||
| 490 | #endif /* LINK_CRTL_SHARE */ | 484 | #endif /* LINK_CRTL_SHARE */ |
| 491 | #endif /* VMS */ | 485 | #endif /* VMS */ |
| 492 | 486 | ||
| 487 | #ifdef REL_ALLOC | ||
| 488 | /* Make some hysteresis in malloc | ||
| 489 | if it has to get its space from the relocating allocator. */ | ||
| 490 | { | ||
| 491 | extern int __malloc_extra_blocks; | ||
| 492 | __malloc_extra_blocks = 32; | ||
| 493 | } | ||
| 494 | #endif | ||
| 495 | |||
| 493 | /* Record (approximately) where the stack begins. */ | 496 | /* Record (approximately) where the stack begins. */ |
| 494 | stack_bottom = &stack_bottom_variable; | 497 | stack_bottom = &stack_bottom_variable; |
| 495 | 498 | ||