]> git.saurik.com Git - bison.git/commitdiff
* src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
authorAkim Demaille <akim@epita.fr>
Wed, 10 Oct 2001 14:58:26 +0000 (14:58 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 10 Oct 2001 14:58:26 +0000 (14:58 +0000)
ChangeLog
THANKS
config/.cvsignore
po/ChangeLog
src/bison.simple

index 7fcfaa6a89d6c9e18c3a8dda599301c95086f552..7f93b7d5fa3bbfd0017180d9101330b76ac5021f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-10-10  Akim Demaille  <akim@epita.fr>
+
+       * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
+
 2001-10-04  Akim Demaille  <akim@epita.fr>
 
        * src/reader.c (parse_union_decl): Push the caracters in
diff --git a/THANKS b/THANKS
index 7cf068c680f613394063258242615907b8f5908e..08548b7940d2929bb39361142f5369e7f5fd12f8 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -1,6 +1,7 @@
 Bison was originally written by Robert Corbett.  It would not be what
 it is today without the invaluable help of these people:
 
+Airy Andre              Airy.Andre@edf.fr
 Akim Demaille           akim@epita.fr
 Albert Chin-A-Young     china@thewrittenword.com
 Alexander Belopolsky    alexb@rentec.com
index ddb4c3511ff9b031bfd7e52fc8167da943d6a26f..dc107e904706eab9c105bd9819b216a9796938f4 100644 (file)
@@ -1,3 +1,9 @@
 Makefile
 *.t
 Makefile.in
+mkinstalldirs
+missing
+config.sub
+config.guess
+mdate-sh
+texinfo.tex
index c63aa88f394d97dbf15b6caba00873c666726a1e..420d3ec1057bee3bafae05e9b24fa7e426b0576c 100644 (file)
@@ -1,3 +1,7 @@
+2001-10-08  gettextize  <bug-gnu-utils@gnu.org>
+
+       * Makefile.in.in: Upgrade to gettext-0.10.40.
+
 2001-10-04  gettextize  <bug-gnu-utils@gnu.org>
 
        * Makefile.in.in: Upgrade to gettext-0.10.40.
index 3f528732b1bd2fa9ea7a71394a37e9847498d4e3..56e63c177e1b105da564df4218676c5839fde399 100644 (file)
 # endif /* alloca not defined */
 #endif /* YYSTACK_USE_ALLOCA not defined */
 
+#ifndef YYSTACK_USE_ALLOCA
+# define YYSTACK_USE_ALLOCA 0
+#endif
+
 #if YYSTACK_USE_ALLOCA
 # define YYSTACK_ALLOC alloca
 #else