mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
* doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
space. From Tim Van Holder.
This commit is contained in:
@@ -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
1
THANKS
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user