space.
From Tim Van Holder.
+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>
 
        Augment the similarity between GLR and LALR traces.
 
 Robert Anisko             anisko_r@epita.fr
 Shura                     debil_urod@ngs.ru
 Tim Josling               tej@melbpc.org.au
+Tim Van Holder            tim.van.holder@pandora.be
 Tom Lane                  tgl@sss.pgh.pa.us
 Tom Tromey                tromey@cygnus.com
 Wayne Green               wayne@infosavvy.com
 
 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