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:
@@ -5986,9 +5986,9 @@ static void
|
||||
yyprint (FILE *file, int type, YYSTYPE value)
|
||||
@{
|
||||
if (type == VAR)
|
||||
fprintf (file, " %s", value.tptr->name);
|
||||
fprintf (file, "%s", value.tptr->name);
|
||||
else if (type == NUM)
|
||||
fprintf (file, " %d", value.val);
|
||||
fprintf (file, "%d", value.val);
|
||||
@}
|
||||
@end smallexample
|
||||
|
||||
|
||||
Reference in New Issue
Block a user