From a74c5ec1a49164cddf46a12482afa7359251770f Mon Sep 17 00:00:00 2001
From: Gerd Moellmann <gerd@gnu.org>
Date: Thu, 14 Sep 2000 15:13:18 +0000
Subject: [PATCH] Change conditional compilation on REL_ALLOC_MMAP to
 USE_MMAP_FOR_BUFFERS.

---
 src/emacs.c | 4 ++--
 1 file 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.")
   malloc_state_ptr = malloc_get_state ();
 #endif
 
-#ifdef REL_ALLOC_MMAP
+#ifdef USE_MMAP_FOR_BUFFERS
   mmap_set_vars (0);
 #endif
   unexec (XSTRING (filename)->data,
 	  !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
-#ifdef REL_ALLOC_MMAP
+#ifdef USE_MMAP_FOR_BUFFERS
   mmap_set_vars (1);
 #endif
 #ifdef DOUG_LEA_MALLOC
-- 
2.39.5