* 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

@@ -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