diff options
author | Jim Blandy <jimb@redhat.com> | 1993-05-22 08:16:25 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-05-22 08:16:25 +0000 |
commit | e18814622b34a17e3cf8b7311798ce6b0ca79c95 (patch) | |
tree | 98d65b8d84705b11066a24e61afcd8a55852f49a | |
parent | faf5e4076983788a6af13a0b9d98224b30500f3c (diff) | |
download | emacs-e18814622b34a17e3cf8b7311798ce6b0ca79c95.tar.gz |
*** empty log message ***
-rw-r--r-- | src/regex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regex.c b/src/regex.c index cbf203b03b1..2977cb4ecda 100644 --- a/src/regex.c +++ b/src/regex.c @@ -883,7 +883,7 @@ static const char *re_error_msg[] = ralloc heap) shift the data out from underneath the regexp routines. */ #if defined (REL_ALLOC) -#if ! defined (HAVE_ALLOCA) || defined (C_ALLOCA) +#if defined (C_ALLOCA) #define MATCH_SHOULD_NOT_ALLOCA #endif #endif @@ -924,7 +924,7 @@ typedef struct /* Initialize `fail_stack'. Do `return -2' if the alloc fails. */ -#ifdef MATCH_SHOULD_NOT_ALLOCA +#ifndef MATCH_SHOULD_NOT_ALLOCA #define INIT_FAIL_STACK() \ do { \ fail_stack.stack = (fail_stack_elt_t *) \ |