aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-09-05 17:01:55 +0000
committerDave Love2002-09-05 17:01:55 +0000
commit7f585e7ab8d066b3cb25e28d2188628d70ae1973 (patch)
tree4a718c1c8196d1570da065fcd05543dc5eb8e4cb /src
parent74214d16a7ed0b383754798a94c68dfabd1de833 (diff)
downloademacs-7f585e7ab8d066b3cb25e28d2188628d70ae1973.tar.gz
emacs-7f585e7ab8d066b3cb25e28d2188628d70ae1973.zip
Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
Diffstat (limited to 'src')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c
index ee190497e5c..b2dc4d51df5 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -461,7 +461,7 @@ init_syntax_once ()
461# ifdef __GNUC__ 461# ifdef __GNUC__
462# define alloca __builtin_alloca 462# define alloca __builtin_alloca
463# else /* not __GNUC__ */ 463# else /* not __GNUC__ */
464# if HAVE_ALLOCA_H 464# ifdef HAVE_ALLOCA_H
465# include <alloca.h> 465# include <alloca.h>
466# endif /* HAVE_ALLOCA_H */ 466# endif /* HAVE_ALLOCA_H */
467# endif /* not __GNUC__ */ 467# endif /* not __GNUC__ */