From: Dave Love Date: Thu, 5 Sep 2002 17:01:55 +0000 (+0000) Subject: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~369 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7f585e7ab8d066b3cb25e28d2188628d70ae1973;p=emacs.git Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'. --- 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 () # ifdef __GNUC__ # define alloca __builtin_alloca # else /* not __GNUC__ */ -# if HAVE_ALLOCA_H +# ifdef HAVE_ALLOCA_H # include # endif /* HAVE_ALLOCA_H */ # endif /* not __GNUC__ */