Mercurial > emacs
changeset 89071:c49c3ca273ba
Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
author | Dave Love <fx@gnu.org> |
---|---|
date | Thu, 05 Sep 2002 17:01:55 +0000 |
parents | 5e361851a772 |
children | 603b787e6146 |
files | src/regex.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/regex.c Thu Sep 05 17:00:46 2002 +0000 +++ b/src/regex.c Thu Sep 05 17:01:55 2002 +0000 @@ -461,7 +461,7 @@ # ifdef __GNUC__ # define alloca __builtin_alloca # else /* not __GNUC__ */ -# if HAVE_ALLOCA_H +# ifdef HAVE_ALLOCA_H # include <alloca.h> # endif /* HAVE_ALLOCA_H */ # endif /* not __GNUC__ */