]> git.saurik.com Git - bison.git/blobdiff - src/symlist.c
More changes to pacify C++ compilers.
[bison.git] / src / symlist.c
index 3615626117d2d031c15d6aa507521144d1623b2f..106db46cb2f5f662f0fcd3937fc4fd8356334b8d 100644 (file)
@@ -49,10 +49,14 @@ symbol_list_new (symbol *sym, location loc)
 `------------------*/
 
 void
-symbol_list_print (FILE *f, symbol_list *l)
+symbol_list_print (symbol_list *l, FILE *f)
 {
-  for (/* Nothing. */; l; l = l->next)
-    symbol_print (f, l->sym);
+  for (/* Nothing. */; l && l->sym; l = l->next)
+    {
+      symbol_print (l->sym, f);
+      if (l && l->sym)
+       fputc (' ', f);
+    }
 }
 
 
@@ -118,7 +122,6 @@ symbol_list_n_type_name_get (symbol_list *rp, location loc, int n)
       if (rp == NULL || rp->sym == NULL)
        {
          complain_at (loc, _("invalid $ value: $%d"), n);
-         fprintf (stderr, "\n");
          return NULL;
        }
       ++i;