X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/23d13411c85d3a8705f9507219f61eddea57a218..89ff1b5e71a6d8aa34b3578282528adb43b198cd:/src/derives.c?ds=sidebyside diff --git a/src/derives.c b/src/derives.c index 89023929..c834f0b0 100644 --- a/src/derives.c +++ b/src/derives.c @@ -1,6 +1,6 @@ /* Match rules with nonterminals for bison, - Copyright (C) 1984, 1989, 2000-2003, 2005, 2009-2012 Free Software + Copyright (C) 1984, 1989, 2000-2003, 2005, 2009-2013 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -47,10 +47,10 @@ print_derives (void) for (i = ntokens; i < nsyms; i++) { rule **rp; - fprintf (stderr, "\t%s derives\n", symbols[i]->tag); + fprintf (stderr, " %s derives\n", symbols[i]->tag); for (rp = derives[i - ntokens]; *rp; ++rp) { - fprintf (stderr, "\t\t%3d ", (*rp)->user_number); + fprintf (stderr, " %3d ", (*rp)->user_number); rule_rhs_print (*rp, stderr); fprintf (stderr, "\n"); }