mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-07-26 04:30:33 +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 <[email protected]>
|
||||||
|
|
||||||
|
* doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
|
||||||
|
space.
|
||||||
|
From Tim Van Holder.
|
||||||
|
|
||||||
2002-11-16 Akim Demaille <[email protected]>
|
2002-11-16 Akim Demaille <[email protected]>
|
||||||
|
|
||||||
Augment the similarity between GLR and LALR traces.
|
Augment the similarity between GLR and LALR traces.
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ Richard Stallman [email protected]
|
|||||||
Robert Anisko [email protected]
|
Robert Anisko [email protected]
|
||||||
Shura [email protected]
|
Shura [email protected]
|
||||||
Tim Josling [email protected]
|
Tim Josling [email protected]
|
||||||
|
Tim Van Holder [email protected]
|
||||||
Tom Lane [email protected]
|
Tom Lane [email protected]
|
||||||
Tom Tromey [email protected]
|
Tom Tromey [email protected]
|
||||||
Wayne Green [email protected]
|
Wayne Green [email protected]
|
||||||
|
|||||||
+2
-2
@@ -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