Mercurial > emacs
changeset 12570:5e531668336e
Fix conditional.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 17 Jul 1995 23:24:57 +0000 |
parents | 1297698116a8 |
children | c960e63751ec |
files | src/regex.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/regex.c Mon Jul 17 23:19:51 1995 +0000 +++ b/src/regex.c Mon Jul 17 23:24:57 1995 +0000 @@ -260,7 +260,7 @@ /* Define how to allocate the failure stack. */ -#if defined (REL_ALLOC) && !defined (REGEX_MALLOC) +#if defined (REL_ALLOC) && defined (REGEX_MALLOC) #define REGEX_ALLOCATE_STACK(size) \ r_alloc (&failure_stack_ptr, (size))