* doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a

space.
From Tim Van Holder.
This commit is contained in:
Akim Demaille
2002-11-18 09:33:22 +00:00
parent 4e8c79eb7f
commit d3c4e709ff
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2002-11-18 Akim Demaille <akim@epita.fr>
* doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
space.
From Tim Van Holder.
2002-11-16 Akim Demaille <akim@epita.fr> 2002-11-16 Akim Demaille <akim@epita.fr>
Augment the similarity between GLR and LALR traces. Augment the similarity between GLR and LALR traces.

1
THANKS
View File

@@ -56,6 +56,7 @@ Richard Stallman rms@gnu.org
Robert Anisko anisko_r@epita.fr Robert Anisko anisko_r@epita.fr
Shura debil_urod@ngs.ru Shura debil_urod@ngs.ru
Tim Josling tej@melbpc.org.au Tim Josling tej@melbpc.org.au
Tim Van Holder tim.van.holder@pandora.be
Tom Lane tgl@sss.pgh.pa.us Tom Lane tgl@sss.pgh.pa.us
Tom Tromey tromey@cygnus.com Tom Tromey tromey@cygnus.com
Wayne Green wayne@infosavvy.com Wayne Green wayne@infosavvy.com

View File

@@ -5986,9 +5986,9 @@ static void
yyprint (FILE *file, int type, YYSTYPE value) yyprint (FILE *file, int type, YYSTYPE value)
@{ @{
if (type == VAR) if (type == VAR)
fprintf (file, " %s", value.tptr->name); fprintf (file, "%s", value.tptr->name);
else if (type == NUM) else if (type == NUM)
fprintf (file, " %d", value.val); fprintf (file, "%d", value.val);
@} @}
@end smallexample @end smallexample