]> git.saurik.com Git - bison.git/commitdiff
* src/output.c (output_rule_data): Don't output NULL, it might
authorAkim Demaille <akim@epita.fr>
Wed, 13 Feb 2002 18:34:59 +0000 (18:34 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 13 Feb 2002 18:34:59 +0000 (18:34 +0000)
not be defined yet.

ChangeLog
THANKS
doc/version.texi
src/output.c

index e76bc28768fe588e6479632e6652e4818eb7b2ad..50cbb834c0b27da84d1b7978f0aa82ee6de5a406 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-13  Andreas Schwab  <schwab@suse.de>
+
+       * src/output.c (output_rule_data): Don't output NULL, it might
+       not be defined yet.
+
 2002-02-13  Guerrero, Juan Manuel  <st001906@hrz1.hrz.tu-darmstadt.de>
 
        * doc/bison.texinfo:  Add DJGPP specific information about
diff --git a/THANKS b/THANKS
index 7f4e262ca1bb1dafeb3bfa2d56b041adcdb4747d..d00258b43a65c66aa292de16174e9caafcd410f0 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -5,6 +5,7 @@ Airy Andre              Airy.Andre@edf.fr
 Akim Demaille           akim@freefriends.org
 Albert Chin-A-Young     china@thewrittenword.com
 Alexander Belopolsky    alexb@rentec.com
+Andreas Schwab          schwab@suse.de
 Arnold Robbins         arnold@skeeve.com
 Cris van Pelt           cris@amf03054.office.wxs.nl
 Daniel Hagerty          hag@gnu.org
index 5fa7befbec9ab7049dc7df25ad0912cd56f7dcde..439e4339d468649b2d7b746bdbf677436de6249f 100644 (file)
@@ -1,4 +1,4 @@
-@set UPDATED 5 January 2002
-@set UPDATED-MONTH January 2002
+@set UPDATED 13 February 2002
+@set UPDATED-MONTH February 2002
 @set EDITION 1.33a
 @set VERSION 1.33a
index 2daac6c31244a762bb83820003b908a37ef8b61c..437383167d644036aef652a9b03fe96b8a9563a8 100644 (file)
@@ -452,7 +452,7 @@ output_rule_data (void)
       j += strsize;
     }
   /* add a NULL entry to list of tokens */
-  obstack_sgrow (&table_obstack, "NULL\n};\n");
+  obstack_sgrow (&table_obstack, "0\n};\n");
 
   if (!token_table_flag && !no_parser_flag)
     obstack_sgrow (&table_obstack, "#endif\n\n");