From: Akim Demaille Date: Wed, 13 Feb 2002 18:34:59 +0000 (+0000) Subject: * src/output.c (output_rule_data): Don't output NULL, it might X-Git-Tag: BISON-1_33a~10 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/e334b4a99b69aae178cb5016cdc2ac344108b332?ds=sidebyside * src/output.c (output_rule_data): Don't output NULL, it might not be defined yet. --- diff --git a/ChangeLog b/ChangeLog index e76bc287..50cbb834 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-02-13 Andreas Schwab + + * src/output.c (output_rule_data): Don't output NULL, it might + not be defined yet. + 2002-02-13 Guerrero, Juan Manuel * doc/bison.texinfo: Add DJGPP specific information about diff --git a/THANKS b/THANKS index 7f4e262c..d00258b4 100644 --- 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 diff --git a/doc/version.texi b/doc/version.texi index 5fa7befb..439e4339 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -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 diff --git a/src/output.c b/src/output.c index 2daac6c3..43738316 100644 --- a/src/output.c +++ b/src/output.c @@ -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");