]> git.saurik.com Git - bison.git/blobdiff - doc/bison.texinfo
* doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
[bison.git] / doc / bison.texinfo
index affc3b622563e1bc492a1bb28d79d9f9f62b0861..f3a5508062d4bd60d638af961915370111f443fb 100644 (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