]> git.saurik.com Git - bison.git/blobdiff - src/derives.c
Merge branch 'maint'
[bison.git] / src / derives.c
index dc6049c7979d56f4e22d1b23ca63e1394e80d89b..890239295d9587738ca8fade57cc80ddd4b4e755 100644 (file)
@@ -1,7 +1,7 @@
 /* Match rules with nonterminals for bison,
 
-   Copyright (C) 1984, 1989, 2000, 2001, 2002, 2003, 2005 Free
-   Software Foundation, Inc.
+   Copyright (C) 1984, 1989, 2000-2003, 2005, 2009-2012 Free Software
+   Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
 
@@ -49,10 +49,11 @@ print_derives (void)
       rule **rp;
       fprintf (stderr, "\t%s derives\n", symbols[i]->tag);
       for (rp = derives[i - ntokens]; *rp; ++rp)
-       {
-         fprintf (stderr, "\t\t%3d ", (*rp)->user_number);
-         rule_rhs_print (*rp, stderr);
-       }
+        {
+          fprintf (stderr, "\t\t%3d ", (*rp)->user_number);
+          rule_rhs_print (*rp, stderr);
+          fprintf (stderr, "\n");
+        }
     }
 
   fputs ("\n\n", stderr);
@@ -96,10 +97,10 @@ derives_compute (void)
       rule_list *p = dset[i - ntokens];
       derives[i - ntokens] = q;
       while (p)
-       {
-         *q++ = p->value;
-         p = p->next;
-       }
+        {
+          *q++ = p->value;
+          p = p->next;
+        }
       *q++ = NULL;
     }