diff options
| author | Gerd Moellmann | 2000-09-14 15:13:18 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-09-14 15:13:18 +0000 |
| commit | a74c5ec1a49164cddf46a12482afa7359251770f (patch) | |
| tree | 16320300461fa39e6f277e7d93649f85a0aafd2d /src | |
| parent | 95f784a93510e90b0aab81602e2f53cb9e589e8d (diff) | |
| download | emacs-a74c5ec1a49164cddf46a12482afa7359251770f.tar.gz emacs-a74c5ec1a49164cddf46a12482afa7359251770f.zip | |
Change conditional compilation on REL_ALLOC_MMAP to
USE_MMAP_FOR_BUFFERS.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c index ff4fe11e75e..47aadd866d8 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -1975,12 +1975,12 @@ You must run Emacs in batch mode in order to dump it.") | |||
| 1975 | malloc_state_ptr = malloc_get_state (); | 1975 | malloc_state_ptr = malloc_get_state (); |
| 1976 | #endif | 1976 | #endif |
| 1977 | 1977 | ||
| 1978 | #ifdef REL_ALLOC_MMAP | 1978 | #ifdef USE_MMAP_FOR_BUFFERS |
| 1979 | mmap_set_vars (0); | 1979 | mmap_set_vars (0); |
| 1980 | #endif | 1980 | #endif |
| 1981 | unexec (XSTRING (filename)->data, | 1981 | unexec (XSTRING (filename)->data, |
| 1982 | !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0); | 1982 | !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0); |
| 1983 | #ifdef REL_ALLOC_MMAP | 1983 | #ifdef USE_MMAP_FOR_BUFFERS |
| 1984 | mmap_set_vars (1); | 1984 | mmap_set_vars (1); |
| 1985 | #endif | 1985 | #endif |
| 1986 | #ifdef DOUG_LEA_MALLOC | 1986 | #ifdef DOUG_LEA_MALLOC |