Don't use relocatable allocator.
authorRichard Stallman <rms@gnu.org>
Fri, 7 Jul 1995 13:20:16 +0000 (13:20 +0000)
committerRichard Stallman <rms@gnu.org>
Fri, 7 Jul 1995 13:20:16 +0000 (13:20 +0000)
regex.c

diff --git a/regex.c b/regex.c
index 144c984e98ca7f06e474733e3d8b4e0e0303bc99..1af5ab0edca01ddf91020d84f2e35ccb75dd5efb 100644 (file)
--- a/regex.c
+++ b/regex.c
@@ -260,7 +260,8 @@ char *alloca ();
 
 /* Define how to allocate the failure stack.  */
 
-#ifdef REL_ALLOC
+#if defined (REL_ALLOC) && !defined (REGEX_MALLOC)
+
 #define REGEX_ALLOCATE_STACK(size)                             \
   r_alloc (&failure_stack_ptr, (size))
 #define REGEX_REALLOCATE_STACK(source, osize, nsize)           \
@@ -268,7 +269,7 @@ char *alloca ();
 #define REGEX_FREE_STACK(ptr)                                  \
   r_alloc_free (&failure_stack_ptr)
 
-#else /* not REL_ALLOC */
+#else /* not using relocating allocator */
 
 #ifdef REGEX_MALLOC
 
@@ -286,7 +287,7 @@ char *alloca ();
 #define REGEX_FREE_STACK(arg)
 
 #endif /* not REGEX_MALLOC */
-#endif /* not REL_ALLOC */
+#endif /* not using relocating allocator */
 
 
 /* True if `size1' is non-NULL and PTR is pointing anywhere inside