X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/21f1b063d812990caeb738fa8db21085ece53a30..cb76b1f1a343642c46bbfa2c4a99ae537b22bd9f:/src/print.c diff --git a/src/print.c b/src/print.c index 157b25c6..57c70eb4 100644 --- a/src/print.c +++ b/src/print.c @@ -1,7 +1,7 @@ /* Print information on generated parser, for bison, - Copyright (C) 1984, 1986, 1989, 2000, 2001, 2002, 2003, 2004, 2005, 2007 - Free Software Foundation, Inc. + Copyright (C) 1984, 1986, 1989, 2000-2005, 2007, 2009-2010 Free + Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -110,7 +110,8 @@ print_core (FILE *out, state *s) fprintf (out, " %s", symbols[*sp]->tag); /* Display the lookahead tokens? */ - if (report_flag & report_lookahead_tokens) + if (report_flag & report_lookahead_tokens + && item_number_is_rule_number (*sp1)) state_rule_lookahead_tokens_print (s, &rules[r], out); fputc ('\n', out); @@ -491,7 +492,8 @@ print_results (void) reduce_output (out); grammar_rules_partial_print (out, - _("Rules never reduced"), rule_never_reduced_p); + _("Rules useless in parser due to conflicts"), + rule_useless_in_parser_p); conflicts_output (out); print_grammar (out);