]> git.saurik.com Git - bison.git/commitdiff
Merge remote-tracking branch 'origin/maint'
authorAkim Demaille <akim@lrde.epita.fr>
Tue, 13 Nov 2012 09:59:55 +0000 (10:59 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Tue, 13 Nov 2012 09:59:55 +0000 (10:59 +0100)
* origin/maint:
  tests: close files in glr-regression
  xml: match DOT output and xml2dot.xsl processing
  xml: factor xslt space template
  graph: fix a memory leak
  xml: documentation
  output: capitalize State

1  2 
NEWS
doc/bison.texi
src/print.c
src/print_graph.c
tests/conflicts.at
tests/existing.at
tests/glr-regression.at
tests/local.at
tests/output.at
tests/reduce.at
tests/regression.at

diff --combined NEWS
index cb594715480d32941f1090fd96ea2c5df0e2bb7a,46d614cfbff7718beabd45213f78d153a4759221..f1ac8887138a80786ed651e4795e8e9b1be9fa27
--- 1/NEWS
--- 2/NEWS
+++ b/NEWS
@@@ -2,246 -2,6 +2,246 @@@ GNU Bison NEW
  
  * Noteworthy changes in release ?.? (????-??-??) [?]
  
 +** Incompatible changes
 +
 +*** Obsolete features
 +
 +  Support for YYFAIL is removed (deprecated in Bison 2.4.2).
 +  Support for yystype and yyltype (instead of YYSTYPE and YYLTYPE)
 +  is removed (deprecated in Bison 1.875).
 +  Support for YYPARSE_PARAM is removed (deprecated in Bison 1.875).
 +
 +** Warnings
 +
 +*** Enhancements of the -Werror option
 +
 +  The -Werror=CATEGORY option is now recognized, and will treat specified
 +  warnings as errors. The warnings need not have been explicitly activated
 +  using the -W option, this is similar to what GCC 4.7 does.
 +
 +  For example, given the following command line, Bison will treat both
 +  warnings related to POSIX Yacc incompatibilities and S/R conflicts as
 +  errors (and only those):
 +
 +    $ bison -Werror=yacc,error=conflicts-sr input.y
 +
 +  If no categories are specified, -Werror will make all active warnings into
 +  errors. For example, the following line does the same the previous example:
 +
 +    $ bison -Werror -Wnone -Wyacc -Wconflicts-sr input.y
 +
 +  (By default -Wconflicts-sr,conflicts-rr,deprecated,other is enabled.)
 +
 +  Note that the categories in this -Werror option may not be prefixed with
 +  "no-". However, -Wno-error[=CATEGORY] is valid.
 +
 +  Note that -y enables -Werror=yacc. Therefore it is now possible to require
 +  Yacc-like behavior (e.g., always generate y.tab.c), but to report
 +  incompatibilities as warnings: "-y -Wno-error=yacc".
 +
 +*** The display of warnings is now richer
 +
 +  The option that controls a given warning is now displayed:
 +
 +    foo.y:4.6: warning: type clash on default action: <foo> != <bar> [-Wother]
 +
 +  In the case of warnings treated as errors, the prefix is changed from
 +  "warning: " to "error: ", and the suffix is displayed, in a manner similar
 +  to GCC, as [-Werror=CATEGORY].
 +
 +  For instance, where the previous version of Bison would report (and exit
 +  with failure):
 +
 +    bison: warnings being treated as errors
 +    input.y:1.1: warning: stray ',' treated as white space
 +
 +  it now reports:
 +
 +    input.y:1.1: error: stray ',' treated as white space [-Werror=other]
 +
 +*** Deprecated constructs
 +
 +  The new 'deprecated' warning category flags obsolete constructs whose
 +  support will be discontinued.  It is enabled by default.  These warnings
 +  used to be reported as 'other' warnings.
 +
 +*** Useless semantic types
 +
 +  Bison now warns about useless (uninhabited) semantic types.  Since
 +  semantic types are not declared to Bison (they are defined in the opaque
 +  %union structure), it is %printer/%destructor directives about useless
 +  types that trigger the warning:
 +
 +    %token <type1> term
 +    %type  <type2> nterm
 +    %printer    {} <type1> <type3>
 +    %destructor {} <type2> <type4>
 +    %%
 +    nterm: term { $$ = $1; };
 +
 +    3.28-34: warning: type <type3> is used, but is not associated to any symbol
 +    4.28-34: warning: type <type4> is used, but is not associated to any symbol
 +
 +*** Undefined but unused symbols
 +
 +  Bison used to raise an error for undefined symbols that are not used in
 +  the grammar.  This is now only a warning.
 +
 +    %printer    {} symbol1
 +    %destructor {} symbol2
 +    %type <type>   symbol3
 +    %%
 +    exp: "a";
 +
 +*** Useless destructors or printers
 +
 +  Bison now warns about useless destructors or printers.  In the following
 +  example, the printer for <type1>, and the destructor for <type2> are
 +  useless: all symbols of <type1> (token1) already have a printer, and all
 +  symbols of type <type2> (token2) already have a destructor.
 +
 +    %token <type1> token1
 +           <type2> token2
 +           <type3> token3
 +           <type4> token4
 +    %printer    {} token1 <type1> <type3>
 +    %destructor {} token2 <type2> <type4>
 +
 +*** Conflicts
 +
 +  The warnings and error messages about shift/reduce and reduce/reduce
 +  conflicts have been normalized.  For instance on the following foo.y file:
 +
 +    %glr-parser
 +    %%
 +    exp: exp '+' exp | '0' | '0';
 +
 +  compare the previous version of bison:
 +
 +    $ bison foo.y
 +    foo.y: conflicts: 1 shift/reduce, 2 reduce/reduce
 +    $ bison -Werror foo.y
 +    bison: warnings being treated as errors
 +    foo.y: conflicts: 1 shift/reduce, 2 reduce/reduce
 +
 +  with the new behavior:
 +
 +    $ bison foo.y
 +    foo.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
 +    foo.y: warning: 2 reduce/reduce conflicts [-Wconflicts-rr]
 +    $ bison -Werror foo.y
 +    foo.y: error: 1 shift/reduce conflict [-Werror=conflicts-sr]
 +    foo.y: error: 2 reduce/reduce conflicts [-Werror=conflicts-rr]
 +
 +  When %expect or %expect-rr is used, such as with bar.y:
 +
 +    %expect 0
 +    %glr-parser
 +    %%
 +    exp: exp '+' exp | '0' | '0';
 +
 +  Former behavior:
 +
 +    $ bison bar.y
 +    bar.y: conflicts: 1 shift/reduce, 2 reduce/reduce
 +    bar.y: expected 0 shift/reduce conflicts
 +    bar.y: expected 0 reduce/reduce conflicts
 +
 +  New one:
 +
 +    $ bison bar.y
 +    bar.y: error: shift/reduce conflicts: 1 found, 0 expected
 +    bar.y: error: reduce/reduce conflicts: 2 found, 0 expected
 +
 +** Additional yylex/yyparse arguments
 +
 +  The new directive %param declares additional arguments to both yylex and
 +  yyparse.  The %lex-param, %parse-param, and %param directives support one
 +  or more arguments.  Instead of
 +
 +    %lex-param   {arg1_type *arg1}
 +    %lex-param   {arg2_type *arg2}
 +    %parse-param {arg1_type *arg1}
 +    %parse-param {arg2_type *arg2}
 +
 +  one may now declare
 +
 +    %param {arg1_type *arg1} {arg2_type *arg2}
 +
 +** Java skeleton improvements
 +
 +  The constants for token names were moved to the Lexer interface.  Also, it
 +  is possible to add code to the parser's constructors using "%code init"
 +  and "%define init_throws".
 +
 +** C++ skeletons improvements
 +
 +*** The parser header is no longer mandatory (lalr1.cc, glr.cc)
 +
 +  Using %defines is now optional.  Without it, the needed support classes
 +  are defined in the generated parser, instead of additional files (such as
 +  location.hh, position.hh and stack.hh).
 +
 +*** Locations are no longer mandatory (lalr1.cc, glr.cc)
 +
 +  Both lalr1.cc and glr.cc no longer require %location.
 +
 +*** syntax_error exception (lalr1.cc)
 +
 +  The C++ parser features a syntax_error exception, which can be
 +  thrown from the scanner or from user rules to raise syntax errors.
 +  This facilitates reporting errors caught in sub-functions (e.g.,
 +  rejecting too large integral literals from a conversion function
 +  used by the scanner, or rejecting invalid combinations from a
 +  factory invoked by the user actions).
 +
 +** Variable api.token.prefix
 +
 +  The variable api.token.prefix changes the way tokens are identified in
 +  the generated files.  This is especially useful to avoid collisions
 +  with identifiers in the target language.  For instance
 +
 +    %token FILE for ERROR
 +    %define api.token.prefix "TOK_"
 +    %%
 +    start: FILE for ERROR;
 +
 +  will generate the definition of the symbols TOK_FILE, TOK_for, and
 +  TOK_ERROR in the generated sources.  In particular, the scanner must
 +  use these prefixed token names, although the grammar itself still
 +  uses the short names (as in the sample rule given above).
 +
 +** Renamed %define variables
 +
 +  The following variables have been renamed for consistency.  Backward
 +  compatibility is ensured, but upgrading is recommended.
 +
 +    lr.default-reductions      -> lr.default-reduction
 +    lr.keep-unreachable-states -> lr.keep-unreachable-state
 +    namespace                  -> api.namespace
 +
 +** Variable parse.error
 +
 +  This variable controls the verbosity of error messages.  The use of the
 +  %error-verbose directive is deprecated in favor of "%define parse.error
 +  verbose".
 +
 +** Semantic predicates
 +
 +  The new, experimental, semantic-predicate feature allows actions of the
 +  form "%?{ BOOLEAN-EXPRESSION }", which cause syntax errors (as for
 +  YYERROR) if the expression evaluates to 0, and are evaluated immediately
 +  in GLR parsers, rather than being deferred.  The result is that they allow
 +  the programmer to prune possible parses based on the values of run-time
 +  expressions.
 +
 +** The directive %expect-rr is now an error in non GLR mode
 +
 +  It used to be an error only if used in non GLR mode, _and_ if there are
 +  reduce/reduce conflicts.
 +
 +* Noteworthy changes in release ?.? (????-??-??) [?]
 +
  ** Changes in the format of error messages
  
    This used to be the format of many error reports:
    position_type are deprecated in favor of api.location.type and
    api.position.type.
  
- ** Graphviz improvements
+ ** Graph improvements in DOT and XSLT
  
    The graphical presentation of the states is more readable: their shape is
    now rectangular, the state number is clearly displayed, and the items are
    The reductions are now explicitly represented as transitions to other
    diamond shaped nodes.
  
+   These changes are present in both --graph output and xml2dot.xsl XSLT
+   processing, with minor (documented) differences.
+   Two nodes were added to the documentation: Xml and Graphviz.
  * Noteworthy changes in release 2.6.5 (2012-11-07) [stable]
  
    We consider compiler warnings about Bison generated parsers to be bugs.
  
  * Noteworthy changes in release 2.6.1 (2012-07-30) [stable]
  
 -  Bison no longer executes user-specified M4 code when processing a grammar.
 + Bison no longer executes user-specified M4 code when processing a grammar.
  
  ** Future Changes
  
  
  * Noteworthy changes in release 2.6 (2012-07-19) [stable]
  
 -** Future Changes
 +** Future changes
  
    The next major release of Bison will drop support for the following
    deprecated features.  Please report disagreements to bug-bison@gnu.org.
@@@ -2215,8 -1980,8 +2220,8 @@@ along with this program.  If not, see <
   LocalWords:  namespaces strerror const autoconfiguration Dconst Autoconf's FDL
   LocalWords:  Automake TMPDIR LESSEQ ylwrap endif yydebug YYTOKEN YYLSP ival hh
   LocalWords:  extern YYTOKENTYPE TOKENTYPE yytokentype tokentype STYPE lval pdf
 - LocalWords:  lang yyoutput dvi html ps POSIX lvalp llocp calc yyo fval Wmaybe
 - LocalWords:  yyvsp pragmas noreturn java's
 + LocalWords:  lang yyoutput dvi html ps POSIX lvalp llocp Wother nterm arg init
 + LocalWords:  TOK calc yyo fval Wconflicts
  
  Local Variables:
  mode: outline
diff --combined doc/bison.texi
index 9b7b14fd2eac5c165a13d774a013e886f43c5fd0,7bb41460f8f44bcad7807a7fa287139cd2e13ebc..6a35422b6d24ec32b67e237bf2362b3a8326b47a
@@@ -135,8 -135,7 +135,8 @@@ Writing GLR Parser
  
  * Simple GLR Parsers::     Using GLR parsers on unambiguous grammars.
  * Merging GLR Parses::     Using GLR parsers to resolve ambiguities.
 -* GLR Semantic Actions::   Deferred semantic actions have special concerns.
 +* GLR Semantic Actions::   Considerations for semantic values and deferred actions.
 +* Semantic Predicates::    Controlling a parse with arbitrary computations.
  * Compiler Requirements::  GLR parsers require a modern C compiler.
  
  Examples
@@@ -163,9 -162,9 +163,9 @@@ Reverse Polish Notation Calculato
  
  Grammar Rules for @code{rpcalc}
  
 -* Rpcalc Input::
 -* Rpcalc Line::
 -* Rpcalc Expr::
 +* Rpcalc Input::            Explanation of the @code{input} nonterminal
 +* Rpcalc Line::             Explanation of the @code{line} nonterminal
 +* Rpcalc Expr::             Explanation of the @code{expr} nonterminal
  
  Location Tracking Calculator: @code{ltcalc}
  
@@@ -178,8 -177,6 +178,8 @@@ Multi-Function Calculator: @code{mfcalc
  * Mfcalc Declarations::    Bison declarations for multi-function calculator.
  * Mfcalc Rules::           Grammar rules for the calculator.
  * Mfcalc Symbol Table::    Symbol table management subroutines.
 +* Mfcalc Lexer::           The lexical analyzer.
 +* Mfcalc Main::            The controlling function.
  
  Bison Grammar Files
  
@@@ -276,8 -273,7 +276,8 @@@ The Bison Parser Algorith
  Operator Precedence
  
  * Why Precedence::    An example showing why precedence is needed.
 -* Using Precedence::  How to specify precedence in Bison grammars.
 +* Using Precedence::  How to specify precedence and associativity.
 +* Precedence Only::   How to specify precedence only.
  * Precedence Examples::  How these features are used in the previous example.
  * How Precedence::    How they work.
  
@@@ -299,6 -295,7 +299,7 @@@ Debugging Your Parse
  
  * Understanding::     Understanding the structure of your parser.
  * Graphviz::          Getting a visual representation of the parser.
+ * Xml::               Getting a markup representation of the parser.
  * Tracing::           Tracing the execution of your parser.
  
  Tracing Your Parser
@@@ -775,8 -772,7 +776,8 @@@ merged result
  @menu
  * Simple GLR Parsers::     Using GLR parsers on unambiguous grammars.
  * Merging GLR Parses::     Using GLR parsers to resolve ambiguities.
 -* GLR Semantic Actions::   Deferred semantic actions have special concerns.
 +* GLR Semantic Actions::   Considerations for semantic values and deferred actions.
 +* Semantic Predicates::    Controlling a parse with arbitrary computations.
  * Compiler Requirements::  GLR parsers require a modern C compiler.
  @end menu
  
@@@ -1144,10 -1140,6 +1145,10 @@@ the offending merge
  @node GLR Semantic Actions
  @subsection GLR Semantic Actions
  
 +The nature of GLR parsing and the structure of the generated
 +parsers give rise to certain restrictions on semantic values and actions.
 +
 +@subsubsection Deferred semantic actions
  @cindex deferred semantic actions
  By definition, a deferred semantic action is not performed at the same time as
  the associated reduction.
@@@ -1181,7 -1173,6 +1182,7 @@@ For example, if a semantic action migh
  to invoke @code{yyclearin} (@pxref{Action Features}) or to attempt to free
  memory referenced by @code{yylval}.
  
 +@subsubsection YYERROR
  @findex YYERROR
  @cindex GLR parsers and @code{YYERROR}
  Another Bison feature requiring special consideration is @code{YYERROR}
  initiate error recovery.
  During deterministic GLR operation, the effect of @code{YYERROR} is
  the same as its effect in a deterministic parser.
 -In a deferred semantic action, its effect is undefined.
 -@c The effect is probably a syntax error at the split point.
 +The effect in a deferred action is similar, but the precise point of the
 +error is undefined;  instead, the parser reverts to deterministic operation,
 +selecting an unspecified stack on which to continue with a syntax error.
 +In a semantic predicate (see @ref{Semantic Predicates}) during nondeterministic
 +parsing, @code{YYERROR} silently prunes
 +the parse that invoked the test.
 +
 +@subsubsection Restrictions on semantic values and locations
 +GLR parsers require that you use POD (Plain Old Data) types for
 +semantic values and location types when using the generated parsers as
 +C++ code.
 +
 +@node Semantic Predicates
 +@subsection Controlling a Parse with Arbitrary Predicates
 +@findex %?
 +@cindex Semantic predicates in GLR parsers
 +
 +In addition to the @code{%dprec} and @code{%merge} directives,
 +GLR parsers
 +allow you to reject parses on the basis of arbitrary computations executed
 +in user code, without having Bison treat this rejection as an error
 +if there are alternative parses. (This feature is experimental and may
 +evolve.  We welcome user feedback.)  For example,
 +
 +@example
 +widget:
 +  %?@{  new_syntax @} "widget" id new_args  @{ $$ = f($3, $4); @}
 +| %?@{ !new_syntax @} "widget" id old_args  @{ $$ = f($3, $4); @}
 +;
 +@end example
 +
 +@noindent
 +is one way to allow the same parser to handle two different syntaxes for
 +widgets.  The clause preceded by @code{%?} is treated like an ordinary
 +action, except that its text is treated as an expression and is always
 +evaluated immediately (even when in nondeterministic mode).  If the
 +expression yields 0 (false), the clause is treated as a syntax error,
 +which, in a nondeterministic parser, causes the stack in which it is reduced
 +to die.  In a deterministic parser, it acts like YYERROR.
 +
 +As the example shows, predicates otherwise look like semantic actions, and
 +therefore you must be take them into account when determining the numbers
 +to use for denoting the semantic values of right-hand side symbols.
 +Predicate actions, however, have no defined value, and may not be given
 +labels.
  
 -Also, see @ref{Location Default Action, ,Default Action for Locations}, which
 -describes a special usage of @code{YYLLOC_DEFAULT} in GLR parsers.
 +There is a subtle difference between semantic predicates and ordinary
 +actions in nondeterministic mode, since the latter are deferred.
 +For example, we could try to rewrite the previous example as
 +
 +@example
 +widget:
 +  @{ if (!new_syntax) YYERROR; @}
 +    "widget" id new_args  @{ $$ = f($3, $4); @}
 +|  @{ if (new_syntax) YYERROR; @}
 +    "widget" id old_args   @{ $$ = f($3, $4); @}
 +;
 +@end example
 +
 +@noindent
 +(reversing the sense of the predicate tests to cause an error when they are
 +false).  However, this
 +does @emph{not} have the same effect if @code{new_args} and @code{old_args}
 +have overlapping syntax.
 +Since the mid-rule actions testing @code{new_syntax} are deferred,
 +a GLR parser first encounters the unresolved ambiguous reduction
 +for cases where @code{new_args} and @code{old_args} recognize the same string
 +@emph{before} performing the tests of @code{new_syntax}.  It therefore
 +reports an error.
 +
 +Finally, be careful in writing predicates: deferred actions have not been
 +evaluated, so that using them in a predicate will have undefined effects.
  
  @node Compiler Requirements
  @subsection Considerations when Compiling GLR Parsers
@@@ -1529,13 -1453,11 +1530,13 @@@ The source code for this calculator is 
  Here are the C and Bison declarations for the reverse polish notation
  calculator.  As in C, comments are placed between @samp{/*@dots{}*/}.
  
 +@comment file: rpcalc.y
  @example
  /* Reverse polish notation calculator.  */
  
  %@{
    #define YYSTYPE double
 +  #include <stdio.h>
    #include <math.h>
    int yylex (void);
    void yyerror (char const *);
@@@ -1580,7 -1502,6 +1581,7 @@@ type for numeric constants
  
  Here are the grammar rules for the reverse polish notation calculator.
  
 +@comment file: rpcalc.y
  @example
  @group
  input:
@@@ -1629,9 -1550,9 +1630,9 @@@ main job of most actions.  The semanti
  rule are referred to as @code{$1}, @code{$2}, and so on.
  
  @menu
 -* Rpcalc Input::
 -* Rpcalc Line::
 -* Rpcalc Expr::
 +* Rpcalc Input::            Explanation of the @code{input} nonterminal
 +* Rpcalc Line::             Explanation of the @code{line} nonterminal
 +* Rpcalc Expr::             Explanation of the @code{expr} nonterminal
  @end menu
  
  @node Rpcalc Input
@@@ -1795,7 -1716,6 +1796,7 @@@ A token type code of zero is returned i
  
  Here is the code for the lexical analyzer:
  
 +@comment file: rpcalc.y
  @example
  @group
  /* The lexical analyzer returns a double floating point
@@@ -1844,7 -1764,6 +1845,7 @@@ In keeping with the spirit of this exam
  kept to the bare minimum.  The only requirement is that it call
  @code{yyparse} to start the process of parsing.
  
 +@comment file: rpcalc.y
  @example
  @group
  int
@@@ -1865,7 -1784,6 +1866,7 @@@ always @code{"syntax error"}).  It is u
  @code{yyerror} (@pxref{Interface, ,Parser C-Language Interface}), so
  here is the definition we will use:
  
 +@comment file: rpcalc.y
  @example
  @group
  #include <stdio.h>
@@@ -1950,15 -1868,15 +1951,15 @@@ example session using @code{rpcalc}
  @example
  $ @kbd{rpcalc}
  @kbd{4 9 +}
 -13
 +@result{} 13
  @kbd{3 7 + 3 4 5 *+-}
 --13
 +@result{} -13
  @kbd{3 7 + 3 4 5 * + - n}              @r{Note the unary minus, @samp{n}}
 -13
 +@result{} 13
  @kbd{5 6 / 4 n +}
 --3.166666667
 +@result{} -3.166666667
  @kbd{3 4 ^}                            @r{Exponentiation}
 -81
 +@result{} 81
  @kbd{^D}                               @r{End-of-file indicator}
  $
  @end example
@@@ -1992,8 -1910,8 +1993,8 @@@ parentheses nested to arbitrary depth
  %token NUM
  %left '-' '+'
  %left '*' '/'
 -%left NEG     /* negation--unary minus */
 -%right '^'    /* exponentiation */
 +%precedence NEG   /* negation--unary minus */
 +%right '^'        /* exponentiation */
  @end group
  
  %% /* The grammar follows.  */
@@@ -2036,16 -1954,15 +2037,16 @@@ In the second section (Bison declaratio
  types and says they are left-associative operators.  The declarations
  @code{%left} and @code{%right} (right associativity) take the place of
  @code{%token} which is used to declare a token type name without
 -associativity.  (These tokens are single-character literals, which
 +associativity/precedence.  (These tokens are single-character literals, which
  ordinarily don't need to be declared.  We declare them here to specify
 -the associativity.)
 +the associativity/precedence.)
  
  Operator precedence is determined by the line ordering of the
  declarations; the higher the line number of the declaration (lower on
  the page or screen), the higher the precedence.  Hence, exponentiation
  has the highest precedence, unary minus (@code{NEG}) is next, followed
 -by @samp{*} and @samp{/}, and so on.  @xref{Precedence, ,Operator
 +by @samp{*} and @samp{/}, and so on.  Unary minus is not associative,
 +only precedence matters (@code{%precedence}. @xref{Precedence, ,Operator
  Precedence}.
  
  The other important new feature is the @code{%prec} in the grammar
@@@ -2149,7 -2066,7 +2150,7 @@@ the same as the declarations for the in
  
  %left '-' '+'
  %left '*' '/'
 -%left NEG
 +%precedence NEG
  %right '^'
  
  %% /* The grammar follows.  */
@@@ -2350,23 -2267,19 +2351,23 @@@ to create named variables, store value
  Here is a sample session with the multi-function calculator:
  
  @example
 +@group
  $ @kbd{mfcalc}
  @kbd{pi = 3.141592653589}
 -3.1415926536
 +@result{} 3.1415926536
 +@end group
 +@group
  @kbd{sin(pi)}
 -0.0000000000
 +@result{} 0.0000000000
 +@end group
  @kbd{alpha = beta1 = 2.3}
 -2.3000000000
 +@result{} 2.3000000000
  @kbd{alpha}
 -2.3000000000
 +@result{} 2.3000000000
  @kbd{ln(alpha)}
 -0.8329091229
 +@result{} 0.8329091229
  @kbd{exp(ln(beta1))}
 -2.3000000000
 +@result{} 2.3000000000
  $
  @end example
  
@@@ -2376,8 -2289,6 +2377,8 @@@ Note that multiple assignment and neste
  * Mfcalc Declarations::    Bison declarations for multi-function calculator.
  * Mfcalc Rules::           Grammar rules for the calculator.
  * Mfcalc Symbol Table::    Symbol table management subroutines.
 +* Mfcalc Lexer::           The lexical analyzer.
 +* Mfcalc Main::            The controlling function.
  @end menu
  
  @node Mfcalc Declarations
@@@ -2389,9 -2300,8 +2390,9 @@@ Here are the C and Bison declarations f
  @example
  @group
  %@{
 -  #include <math.h>  /* For math functions, cos(), sin(), etc.  */
 -  #include "calc.h"  /* Contains definition of `symrec'.  */
 +  #include <stdio.h>  /* For printf, etc. */
 +  #include <math.h>   /* For pow, used in the grammar.  */
 +  #include "calc.h"   /* Contains definition of `symrec'.  */
    int yylex (void);
    void yyerror (char const *);
  %@}
  %right '='
  %left '-' '+'
  %left '*' '/'
 -%left NEG     /* negation--unary minus */
 -%right '^'    /* exponentiation */
 +%precedence NEG /* negation--unary minus */
 +%right '^'      /* exponentiation */
  @end group
  @end example
  
@@@ -2528,11 -2438,23 +2529,11 @@@ symrec *getsym (char const *)
  @end group
  @end example
  
 -The new version of @code{main} includes a call to @code{init_table}, a
 -function that initializes the symbol table.  Here it is, and
 -@code{init_table} as well:
 +The new version of @code{main} will call @code{init_table} to initialize
 +the symbol table:
  
  @comment file: mfcalc.y: 3
  @example
 -#include <stdio.h>
 -
 -@group
 -/* Called by yyparse on error.  */
 -void
 -yyerror (char const *s)
 -@{
 -  printf ("%s\n", s);
 -@}
 -@end group
 -
  @group
  struct init
  @{
  @group
  struct init const arith_fncts[] =
  @{
 -  "sin",  sin,
 -  "cos",  cos,
 -  "atan", atan,
 -  "ln",   log,
 -  "exp",  exp,
 -  "sqrt", sqrt,
 -  0, 0
 +  @{ "atan", atan @},
 +  @{ "cos",  cos  @},
 +  @{ "exp",  exp  @},
 +  @{ "ln",   log  @},
 +  @{ "sin",  sin  @},
 +  @{ "sqrt", sqrt @},
 +  @{ 0, 0 @},
  @};
  @end group
  
@@@ -2561,7 -2483,6 +2562,7 @@@ symrec *sym_table
  
  @group
  /* Put arithmetic functions in table.  */
 +static
  void
  init_table (void)
  @{
      @}
  @}
  @end group
 -
 -@group
 -int
 -main (void)
 -@{
 -  init_table ();
 -  return yyparse ();
 -@}
 -@end group
  @end example
  
  By simply editing the initialization list and adding the necessary include
@@@ -2612,16 -2542,13 +2613,16 @@@ getsym (char const *sym_name
    symrec *ptr;
    for (ptr = sym_table; ptr != (symrec *) 0;
         ptr = (symrec *)ptr->next)
 -    if (strcmp (ptr->name,sym_name) == 0)
 +    if (strcmp (ptr->name, sym_name) == 0)
        return ptr;
    return 0;
  @}
  @end group
  @end example
  
 +@node Mfcalc Lexer
 +@subsection The @code{mfcalc} Lexer
 +
  The function @code{yylex} must now recognize variables, numeric values, and
  the single-character arithmetic operators.  Strings of alphanumeric
  characters with a leading letter are recognized as either variables or
@@@ -2678,6 -2605,7 +2679,6 @@@ yylex (void
        symrec *s;
        int i;
  @end group
 -
        if (!symbuf)
          symbuf = (char *) malloc (length + 1);
  
  @end group
  @end example
  
 +@node Mfcalc Main
 +@subsection The @code{mfcalc} Main
 +
  The error reporting function is unchanged, and the new version of
  @code{main} includes a call to @code{init_table} and sets the @code{yydebug}
  on user demand (@xref{Tracing, , Tracing Your Parser}, for details):
@@@ -4378,8 -4303,7 +4379,8 @@@ Bison will convert this into a @code{#d
  the parser, so that the function @code{yylex} (if it is in this file)
  can use the name @var{name} to stand for this token type's code.
  
 -Alternatively, you can use @code{%left}, @code{%right}, or
 +Alternatively, you can use @code{%left}, @code{%right},
 +@code{%precedence}, or
  @code{%nonassoc} instead of @code{%token}, if you wish to specify
  associativity and precedence.  @xref{Precedence Decl, ,Operator
  Precedence}.
@@@ -4455,8 -4379,7 +4456,8 @@@ of ``$end''
  @cindex declaring operator precedence
  @cindex operator precedence, declaring
  
 -Use the @code{%left}, @code{%right} or @code{%nonassoc} declaration to
 +Use the @code{%left}, @code{%right}, @code{%nonassoc}, or
 +@code{%precedence} declaration to
  declare a token and specify its precedence and associativity, all at
  once.  These are called @dfn{precedence declarations}.
  @xref{Precedence, ,Operator Precedence}, for general information on
@@@ -4492,10 -4415,6 +4493,10 @@@ left-associativity (grouping @var{x} wi
  means that @samp{@var{x} @var{op} @var{y} @var{op} @var{z}} is
  considered a syntax error.
  
 +@code{%precedence} gives only precedence to the @var{symbols}, and
 +defines no associativity at all.  Use this to define precedence only,
 +and leave any potential conflict due to associativity enabled.
 +
  @item
  The precedence of an operator determines how it nests with other operators.
  All the tokens declared in a single precedence declaration have equal
@@@ -4961,7 -4880,7 +4962,7 @@@ statically allocated variables for comm
  including @code{yylval} and @code{yylloc}.)
  
  Alternatively, you can generate a pure, reentrant parser.  The Bison
 -declaration @code{%define api.pure} says that you want the parser to be
 +declaration @samp{%define api.pure} says that you want the parser to be
  reentrant.  It looks like this:
  
  @example
@@@ -5065,14 -4984,14 +5066,14 @@@ for use by the next invocation of the @
  
  Bison also supports both the push parser interface along with the pull parser
  interface in the same generated parser.  In order to get this functionality,
 -you should replace the @code{%define api.push-pull push} declaration with the
 -@code{%define api.push-pull both} declaration.  Doing this will create all of
 +you should replace the @samp{%define api.push-pull push} declaration with the
 +@samp{%define api.push-pull both} declaration.  Doing this will create all of
  the symbols mentioned earlier along with the two extra symbols, @code{yyparse}
  and @code{yypull_parse}.  @code{yyparse} can be used exactly as it normally
  would be used.  However, the user should note that it is implemented in the
  generated parser by calling @code{yypull_parse}.
  This makes the @code{yyparse} function that is generated with the
 -@code{%define api.push-pull both} declaration slower than the normal
 +@samp{%define api.push-pull both} declaration slower than the normal
  @code{yyparse} function.  If the user
  calls the @code{yypull_parse} function it will parse the rest of the input
  stream.  It is possible to @code{yypush_parse} tokens to select a subgrammar
@@@ -5088,9 -5007,9 +5089,9 @@@ yypull_parse (ps); /* Will call the lex
  yypstate_delete (ps);
  @end example
  
 -Adding the @code{%define api.pure} declaration does exactly the same thing to
 -the generated parser with @code{%define api.push-pull both} as it did for
 -@code{%define api.push-pull push}.
 +Adding the @samp{%define api.pure} declaration does exactly the same thing to
 +the generated parser with @samp{%define api.push-pull both} as it did for
 +@samp{%define api.push-pull push}.
  
  @node Decl Summary
  @subsection Bison Declaration Summary
@@@ -5163,8 -5082,10 +5164,8 @@@ default location or at the location spe
  @end deffn
  
  @deffn {Directive} %debug
 -In the parser implementation file, define the macro @code{YYDEBUG} (or
 -@code{@var{prefix}DEBUG} with @samp{%define api.prefix @var{prefix}}, see
 -@ref{Multiple Parsers, ,Multiple Parsers in the Same Program}) to 1 if it is
 -not already defined, so that the debugging facilities are compiled.
 +Instrument the parser for traces.  Obsoleted by @samp{%define
 +parse.trace}.
  @xref{Tracing, ,Tracing Your Parser}.
  @end deffn
  
@@@ -5260,22 -5181,6 +5261,22 @@@ grammar does not use it, using @samp{%l
  accurate syntax error messages.
  @end deffn
  
 +@deffn {Directive} %name-prefix "@var{prefix}"
 +Rename the external symbols used in the parser so that they start with
 +@var{prefix} instead of @samp{yy}.  The precise list of symbols renamed
 +in C parsers
 +is @code{yyparse}, @code{yylex}, @code{yyerror}, @code{yynerrs},
 +@code{yylval}, @code{yychar}, @code{yydebug}, and
 +(if locations are used) @code{yylloc}.  If you use a push parser,
 +@code{yypush_parse}, @code{yypull_parse}, @code{yypstate},
 +@code{yypstate_new} and @code{yypstate_delete} will
 +also be renamed.  For example, if you use @samp{%name-prefix "c_"}, the
 +names become @code{c_parse}, @code{c_lex}, and so on.
 +For C++ parsers, see the @samp{%define api.namespace} documentation in this
 +section.
 +@xref{Multiple Parsers, ,Multiple Parsers in the Same Program}.
 +@end deffn
 +
  @ifset defaultprec
  @deffn {Directive} %no-default-prec
  Do not assign a precedence to rules lacking an explicit @code{%prec}
@@@ -5299,7 -5204,7 +5300,7 @@@ Specify @var{file} for the parser imple
  @end deffn
  
  @deffn {Directive} %pure-parser
 -Deprecated version of @code{%define api.pure} (@pxref{%define
 +Deprecated version of @samp{%define api.pure} (@pxref{%define
  Summary,,api.pure}), for which Bison is more careful to warn about
  unreasonable usage.
  @end deffn
@@@ -5422,59 -5327,7 +5423,59 @@@ Summary,,%skeleton})
  Unaccepted @var{variable}s produce an error.
  Some of the accepted @var{variable}s are:
  
 -@itemize @bullet
 +@table @code
 +@c ================================================== api.namespace
 +@item api.namespace
 +@findex %define api.namespace
 +@itemize
 +@item Languages(s): C++
 +
 +@item Purpose: Specify the namespace for the parser class.
 +For example, if you specify:
 +
 +@example
 +%define api.namespace "foo::bar"
 +@end example
 +
 +Bison uses @code{foo::bar} verbatim in references such as:
 +
 +@example
 +foo::bar::parser::semantic_type
 +@end example
 +
 +However, to open a namespace, Bison removes any leading @code{::} and then
 +splits on any remaining occurrences:
 +
 +@example
 +namespace foo @{ namespace bar @{
 +  class position;
 +  class location;
 +@} @}
 +@end example
 +
 +@item Accepted Values:
 +Any absolute or relative C++ namespace reference without a trailing
 +@code{"::"}.  For example, @code{"foo"} or @code{"::foo::bar"}.
 +
 +@item Default Value:
 +The value specified by @code{%name-prefix}, which defaults to @code{yy}.
 +This usage of @code{%name-prefix} is for backward compatibility and can
 +be confusing since @code{%name-prefix} also specifies the textual prefix
 +for the lexical analyzer function.  Thus, if you specify
 +@code{%name-prefix}, it is best to also specify @samp{%define
 +api.namespace} so that @code{%name-prefix} @emph{only} affects the
 +lexical analyzer function.  For example, if you specify:
 +
 +@example
 +%define api.namespace "foo"
 +%name-prefix "bar::"
 +@end example
 +
 +The parser namespace is @code{foo} and @code{yylex} is referenced as
 +@code{bar::lex}.
 +@end itemize
 +@c namespace
 +
  @c ================================================== api.location.type
  @item @code{api.location.type}
  @findex %define api.location.type
  @end itemize
  
  @c ================================================== api.prefix
 -@item @code{api.prefix}
 +@item api.prefix
  @findex %define api.prefix
  
  @itemize @bullet
  @end itemize
  
  @c ================================================== api.pure
 -@item @code{api.pure}
 +@item api.pure
  @findex %define api.pure
  
  @itemize @bullet
  
  @item Default Value: @code{false}
  @end itemize
 +@c api.pure
 +
  
 -@c ================================================== api.push-pull
  
 -@item @code{api.push-pull}
 +@c ================================================== api.push-pull
 +@item api.push-pull
  @findex %define api.push-pull
  
  @itemize @bullet
@@@ -5543,78 -5394,11 +5544,78 @@@ More user feedback will help to stabili
  
  @item Default Value: @code{pull}
  @end itemize
 +@c api.push-pull
 +
 +
 +
 +@c ================================================== api.token.constructor
 +@item api.token.constructor
 +@findex %define api.token.constructor
 +
 +@itemize @bullet
 +@item Language(s):
 +C++
 +
 +@item Purpose:
 +When variant-based semantic values are enabled (@pxref{C++ Variants}),
 +request that symbols be handled as a whole (type, value, and possibly
 +location) in the scanner.  @xref{Complete Symbols}, for details.
 +
 +@item Accepted Values:
 +Boolean.
 +
 +@item Default Value:
 +@code{false}
 +@item History:
 +introduced in Bison 2.8
 +@end itemize
 +@c api.token.constructor
 +
  
 -@c ================================================== lr.default-reductions
 +@c ================================================== api.token.prefix
 +@item api.token.prefix
 +@findex %define api.token.prefix
  
 -@item @code{lr.default-reductions}
 -@findex %define lr.default-reductions
 +@itemize
 +@item Languages(s): all
 +
 +@item Purpose:
 +Add a prefix to the token names when generating their definition in the
 +target language.  For instance
 +
 +@example
 +%token FILE for ERROR
 +%define api.token.prefix "TOK_"
 +%%
 +start: FILE for ERROR;
 +@end example
 +
 +@noindent
 +generates the definition of the symbols @code{TOK_FILE}, @code{TOK_for},
 +and @code{TOK_ERROR} in the generated source files.  In particular, the
 +scanner must use these prefixed token names, while the grammar itself
 +may still use the short names (as in the sample rule given above).  The
 +generated informational files (@file{*.output}, @file{*.xml},
 +@file{*.dot}) are not modified by this prefix.  See @ref{Calc++ Parser}
 +and @ref{Calc++ Scanner}, for a complete example.
 +
 +@item Accepted Values:
 +Any string.  Should be a valid identifier prefix in the target language,
 +in other words, it should typically be an identifier itself (sequence of
 +letters, underscores, and ---not at the beginning--- digits).
 +
 +@item Default Value:
 +empty
 +@item History:
 +introduced in Bison 2.8
 +@end itemize
 +@c api.token.prefix
 +
 +
 +@c ================================================== lr.default-reduction
 +
 +@item lr.default-reduction
 +@findex %define lr.default-reduction
  
  @itemize @bullet
  @item Language(s): all
@@@ -5630,15 -5414,12 +5631,15 @@@ feedback will help to stabilize it.
  @item @code{accepting} if @code{lr.type} is @code{canonical-lr}.
  @item @code{most} otherwise.
  @end itemize
 +@item History:
 +introduced as @code{lr.default-reduction} in 2.5, renamed as
 +@code{lr.default-reduction} in 2.8.
  @end itemize
  
 -@c ============================================ lr.keep-unreachable-states
 +@c ============================================ lr.keep-unreachable-state
  
 -@item @code{lr.keep-unreachable-states}
 -@findex %define lr.keep-unreachable-states
 +@item lr.keep-unreachable-state
 +@findex %define lr.keep-unreachable-state
  
  @itemize @bullet
  @item Language(s): all
@@@ -5647,14 -5428,10 +5648,14 @@@ remain in the parser tables.  @xref{Unr
  @item Accepted Values: Boolean
  @item Default Value: @code{false}
  @end itemize
 +introduced as @code{lr.keep_unreachable_states} in 2.3b, renamed as
 +@code{lr.keep-unreachable-state} in 2.5, and as
 +@code{lr.keep-unreachable-state} in 2.8.
 +@c lr.keep-unreachable-state
  
  @c ================================================== lr.type
  
 -@item @code{lr.type}
 +@item lr.type
  @findex %define lr.type
  
  @itemize @bullet
@@@ -5669,62 -5446,62 +5670,62 @@@ More user feedback will help to stabili
  @item Default Value: @code{lalr}
  @end itemize
  
 -@c ================================================== namespace
  
 -@item @code{namespace}
 +@c ================================================== namespace
 +@item namespace
  @findex %define namespace
 +Obsoleted by @code{api.namespace}
 +@c namespace
  
 -@itemize
 -@item Languages(s): C++
  
 -@item Purpose: Specify the namespace for the parser class.
 -For example, if you specify:
 +@c ================================================== parse.assert
 +@item parse.assert
 +@findex %define parse.assert
  
 -@smallexample
 -%define namespace "foo::bar"
 -@end smallexample
 +@itemize
 +@item Languages(s): C++
  
 -Bison uses @code{foo::bar} verbatim in references such as:
 +@item Purpose: Issue runtime assertions to catch invalid uses.
 +In C++, when variants are used (@pxref{C++ Variants}), symbols must be
 +constructed and
 +destroyed properly.  This option checks these constraints.
  
 -@smallexample
 -foo::bar::parser::semantic_type
 -@end smallexample
 +@item Accepted Values: Boolean
  
 -However, to open a namespace, Bison removes any leading @code{::} and then
 -splits on any remaining occurrences:
 +@item Default Value: @code{false}
 +@end itemize
 +@c parse.assert
  
 -@smallexample
 -namespace foo @{ namespace bar @{
 -  class position;
 -  class location;
 -@} @}
 -@end smallexample
 -
 -@item Accepted Values: Any absolute or relative C++ namespace reference without
 -a trailing @code{"::"}.
 -For example, @code{"foo"} or @code{"::foo::bar"}.
 -
 -@item Default Value: The value specified by @code{%name-prefix}, which defaults
 -to @code{yy}.
 -This usage of @code{%name-prefix} is for backward compatibility and can be
 -confusing since @code{%name-prefix} also specifies the textual prefix for the
 -lexical analyzer function.
 -Thus, if you specify @code{%name-prefix}, it is best to also specify
 -@code{%define namespace} so that @code{%name-prefix} @emph{only} affects the
 -lexical analyzer function.
 -For example, if you specify:
  
 -@smallexample
 -%define namespace "foo"
 -%name-prefix "bar::"
 -@end smallexample
 +@c ================================================== parse.error
 +@item parse.error
 +@findex %define parse.error
 +@itemize
 +@item Languages(s):
 +all
 +@item Purpose:
 +Control the kind of error messages passed to the error reporting
 +function.  @xref{Error Reporting, ,The Error Reporting Function
 +@code{yyerror}}.
 +@item Accepted Values:
 +@itemize
 +@item @code{simple}
 +Error messages passed to @code{yyerror} are simply @w{@code{"syntax
 +error"}}.
 +@item @code{verbose}
 +Error messages report the unexpected token, and possibly the expected ones.
 +However, this report can often be incorrect when LAC is not enabled
 +(@pxref{LAC}).
 +@end itemize
  
 -The parser namespace is @code{foo} and @code{yylex} is referenced as
 -@code{bar::lex}.
 +@item Default Value:
 +@code{simple}
  @end itemize
 +@c parse.error
 +
  
  @c ================================================== parse.lac
 -@item @code{parse.lac}
 +@item parse.lac
  @findex %define parse.lac
  
  @itemize
@@@ -5735,50 -5512,7 +5736,50 @@@ syntax error handling.  @xref{LAC}
  @item Accepted Values: @code{none}, @code{full}
  @item Default Value: @code{none}
  @end itemize
 +@c parse.lac
 +
 +@c ================================================== parse.trace
 +@item parse.trace
 +@findex %define parse.trace
 +
 +@itemize
 +@item Languages(s): C, C++, Java
 +
 +@item Purpose: Require parser instrumentation for tracing.
 +@xref{Tracing, ,Tracing Your Parser}.
 +
 +In C/C++, define the macro @code{YYDEBUG} (or @code{@var{prefix}DEBUG} with
 +@samp{%define api.prefix @var{prefix}}), see @ref{Multiple Parsers,
 +,Multiple Parsers in the Same Program}) to 1 in the parser implementation
 +file if it is not already defined, so that the debugging facilities are
 +compiled.
 +
 +@item Accepted Values: Boolean
 +
 +@item Default Value: @code{false}
  @end itemize
 +@c parse.trace
 +
 +@c ================================================== variant
 +@item variant
 +@findex %define variant
 +
 +@itemize @bullet
 +@item Language(s):
 +C++
 +
 +@item Purpose:
 +Request variant-based semantic values.
 +@xref{C++ Variants}.
 +
 +@item Accepted Values:
 +Boolean.
 +
 +@item Default Value:
 +@code{false}
 +@end itemize
 +@c variant
 +@end table
  
  
  @node %code Summary
@@@ -5824,7 -5558,7 +5825,7 @@@ file
  Not all qualifiers are accepted for all target languages.  Unaccepted
  qualifiers produce an error.  Some of the accepted qualifiers are:
  
 -@itemize @bullet
 +@table @code
  @item requires
  @findex %code requires
  
@@@ -5888,7 -5622,7 +5889,7 @@@ parser implementation file.  For exampl
  @item Location(s): The parser Java file after any Java package directive and
  before any class definitions.
  @end itemize
 -@end itemize
 +@end table
  
  Though we say the insertion locations are language-dependent, they are
  technically skeleton-dependent.  Writers of non-standard skeletons
@@@ -6050,10 -5784,10 +6051,10 @@@ If you use a reentrant parser, you can 
  parameter information to it in a reentrant way.  To do so, use the
  declaration @code{%parse-param}:
  
 -@deffn {Directive} %parse-param @{@var{argument-declaration}@}
 +@deffn {Directive} %parse-param @{@var{argument-declaration}@} @dots{}
  @findex %parse-param
 -Declare that an argument declared by the braced-code
 -@var{argument-declaration} is an additional @code{yyparse} argument.
 +Declare that one or more
 +@var{argument-declaration} are additional @code{yyparse} arguments.
  The @var{argument-declaration} is used when declaring
  functions or prototypes.  The last identifier in
  @var{argument-declaration} must be the argument name.
  Here's an example.  Write this in the parser:
  
  @example
 -%parse-param @{int *nastiness@}
 -%parse-param @{int *randomness@}
 +%parse-param @{int *nastiness@} @{int *randomness@}
  @end example
  
  @noindent
@@@ -6092,8 -5827,8 +6093,8 @@@ exp: @dots{}    @{ @dots{}; *randomnes
  More user feedback will help to stabilize it.)
  
  You call the function @code{yypush_parse} to parse a single token.  This
 -function is available if either the @code{%define api.push-pull push} or
 -@code{%define api.push-pull both} declaration is used.
 +function is available if either the @samp{%define api.push-pull push} or
 +@samp{%define api.push-pull both} declaration is used.
  @xref{Push Decl, ,A Push Parser}.
  
  @deftypefun int yypush_parse (yypstate *yyps)
@@@ -6110,7 -5845,7 +6111,7 @@@ required to finish parsing the grammar
  More user feedback will help to stabilize it.)
  
  You call the function @code{yypull_parse} to parse the rest of the input
 -stream.  This function is available if the @code{%define api.push-pull both}
 +stream.  This function is available if the @samp{%define api.push-pull both}
  declaration is used.
  @xref{Push Decl, ,A Push Parser}.
  
@@@ -6126,8 -5861,8 +6127,8 @@@ The value returned by @code{yypull_pars
  More user feedback will help to stabilize it.)
  
  You call the function @code{yypstate_new} to create a new parser instance.
 -This function is available if either the @code{%define api.push-pull push} or
 -@code{%define api.push-pull both} declaration is used.
 +This function is available if either the @samp{%define api.push-pull push} or
 +@samp{%define api.push-pull both} declaration is used.
  @xref{Push Decl, ,A Push Parser}.
  
  @deftypefun {yypstate*} yypstate_new (void)
@@@ -6145,8 -5880,8 +6146,8 @@@ allocated
  More user feedback will help to stabilize it.)
  
  You call the function @code{yypstate_delete} to delete a parser instance.
 -function is available if either the @code{%define api.push-pull push} or
 -@code{%define api.push-pull both} declaration is used.
 +function is available if either the @samp{%define api.push-pull push} or
 +@samp{%define api.push-pull both} declaration is used.
  @xref{Push Decl, ,A Push Parser}.
  
  @deftypefun void yypstate_delete (yypstate *yyps)
@@@ -6335,7 -6070,7 +6336,7 @@@ The data type of @code{yylloc} has the 
  @node Pure Calling
  @subsection Calling Conventions for Pure Parsers
  
 -When you use the Bison declaration @code{%define api.pure} to request a
 +When you use the Bison declaration @samp{%define api.pure} to request a
  pure, reentrant parser, the global communication variables @code{yylval}
  and @code{yylloc} cannot be used.  (@xref{Pure Decl, ,A Pure (Reentrant)
  Parser}.)  In such parsers the two global variables are replaced by
@@@ -6359,57 -6094,46 +6360,57 @@@ textual locations, then the type @code{
  this case, omit the second argument; @code{yylex} will be called with
  only one argument.
  
 -
 -If you wish to pass the additional parameter data to @code{yylex}, use
 +If you wish to pass additional arguments to @code{yylex}, use
  @code{%lex-param} just like @code{%parse-param} (@pxref{Parser
 -Function}).
 +Function}).  To pass additional arguments to both @code{yylex} and
 +@code{yyparse}, use @code{%param}.
  
 -@deffn {Directive} lex-param @{@var{argument-declaration}@}
 +@deffn {Directive} %lex-param @{@var{argument-declaration}@} @dots{}
  @findex %lex-param
 -Declare that the braced-code @var{argument-declaration} is an
 -additional @code{yylex} argument declaration.
 +Specify that @var{argument-declaration} are additional @code{yylex} argument
 +declarations.  You may pass one or more such declarations, which is
 +equivalent to repeating @code{%lex-param}.
 +@end deffn
 +
 +@deffn {Directive} %param @{@var{argument-declaration}@} @dots{}
 +@findex %param
 +Specify that @var{argument-declaration} are additional
 +@code{yylex}/@code{yyparse} argument declaration.  This is equivalent to
 +@samp{%lex-param @{@var{argument-declaration}@} @dots{} %parse-param
 +@{@var{argument-declaration}@} @dots{}}.  You may pass one or more
 +declarations, which is equivalent to repeating @code{%param}.
  @end deffn
  
  For instance:
  
  @example
 -%parse-param @{int *nastiness@}
 -%lex-param   @{int *nastiness@}
 -%parse-param @{int *randomness@}
 +%lex-param   @{scanner_mode *mode@}
 +%parse-param @{parser_mode *mode@}
 +%param       @{environment_type *env@}
  @end example
  
  @noindent
  results in the following signatures:
  
  @example
 -int yylex   (int *nastiness);
 -int yyparse (int *nastiness, int *randomness);
 +int yylex   (scanner_mode *mode, environment_type *env);
 +int yyparse (parser_mode *mode, environment_type *env);
  @end example
  
 -If @code{%define api.pure} is added:
 +If @samp{%define api.pure} is added:
  
  @example
 -int yylex   (YYSTYPE *lvalp, int *nastiness);
 -int yyparse (int *nastiness, int *randomness);
 +int yylex   (YYSTYPE *lvalp, scanner_mode *mode, environment_type *env);
 +int yyparse (parser_mode *mode, environment_type *env);
  @end example
  
  @noindent
 -and finally, if both @code{%define api.pure} and @code{%locations} are used:
 +and finally, if both @samp{%define api.pure} and @code{%locations} are used:
  
  @example
 -int yylex   (YYSTYPE *lvalp, YYLTYPE *llocp, int *nastiness);
 -int yyparse (int *nastiness, int *randomness);
 +int yylex   (YYSTYPE *lvalp, YYLTYPE *llocp,
 +             scanner_mode *mode, environment_type *env);
 +int yyparse (parser_mode *mode, environment_type *env);
  @end example
  
  @node Error Reporting
  @cindex parse error
  @cindex syntax error
  
 -The Bison parser detects a @dfn{syntax error} or @dfn{parse error}
 +The Bison parser detects a @dfn{syntax error} (or @dfn{parse error})
  whenever it reads a token which cannot satisfy any syntax rule.  An
  action in the grammar can also explicitly proclaim an error, using the
  macro @code{YYERROR} (@pxref{Action Features, ,Special Features for Use
@@@ -6431,8 -6155,8 +6432,8 @@@ called by @code{yyparse} whenever a syn
  receives one argument.  For a syntax error, the string is normally
  @w{@code{"syntax error"}}.
  
 -@findex %error-verbose
 -If you invoke the directive @code{%error-verbose} in the Bison declarations
 +@findex %define parse.error
 +If you invoke @samp{%define parse.error verbose} in the Bison declarations
  section (@pxref{Bison Declarations, ,The Bison Declarations Section}), then
  Bison provides a more verbose and specific error message string instead of
  just plain @w{@code{"syntax error"}}.  However, that message sometimes
@@@ -6490,7 -6214,7 +6491,7 @@@ void yyerror (int *nastiness, char cons
  Finally, GLR and Yacc parsers share the same @code{yyerror} calling
  convention for absolutely pure parsers, i.e., when the calling
  convention of @code{yylex} @emph{and} the calling convention of
 -@code{%define api.pure} are pure.
 +@samp{%define api.pure} are pure.
  I.e.:
  
  @example
@@@ -7012,8 -6736,7 +7013,8 @@@ shift and when to reduce
  
  @menu
  * Why Precedence::    An example showing why precedence is needed.
 -* Using Precedence::  How to specify precedence in Bison grammars.
 +* Using Precedence::  How to specify precedence and associativity.
 +* Precedence Only::   How to specify precedence only.
  * Precedence Examples::  How these features are used in the previous example.
  * How Precedence::    How they work.
  @end menu
@@@ -7069,9 -6792,8 +7070,9 @@@ makes right-associativity
  @node Using Precedence
  @subsection Specifying Operator Precedence
  @findex %left
 -@findex %right
  @findex %nonassoc
 +@findex %precedence
 +@findex %right
  
  Bison allows you to specify these choices with the operator precedence
  declarations @code{%left} and @code{%right}.  Each such declaration
@@@ -7081,63 -6803,13 +7082,63 @@@ those operators left-associative and th
  them right-associative.  A third alternative is @code{%nonassoc}, which
  declares that it is a syntax error to find the same operator twice ``in a
  row''.
 +The last alternative, @code{%precedence}, allows to define only
 +precedence and no associativity at all.  As a result, any
 +associativity-related conflict that remains will be reported as an
 +compile-time error.  The directive @code{%nonassoc} creates run-time
 +error: using the operator in a associative way is a syntax error.  The
 +directive @code{%precedence} creates compile-time errors: an operator
 +@emph{can} be involved in an associativity-related conflict, contrary to
 +what expected the grammar author.
  
  The relative precedence of different operators is controlled by the
 -order in which they are declared.  The first @code{%left} or
 -@code{%right} declaration in the file declares the operators whose
 +order in which they are declared.  The first precedence/associativity
 +declaration in the file declares the operators whose
  precedence is lowest, the next such declaration declares the operators
  whose precedence is a little higher, and so on.
  
 +@node Precedence Only
 +@subsection Specifying Precedence Only
 +@findex %precedence
 +
 +Since POSIX Yacc defines only @code{%left}, @code{%right}, and
 +@code{%nonassoc}, which all defines precedence and associativity, little
 +attention is paid to the fact that precedence cannot be defined without
 +defining associativity.  Yet, sometimes, when trying to solve a
 +conflict, precedence suffices.  In such a case, using @code{%left},
 +@code{%right}, or @code{%nonassoc} might hide future (associativity
 +related) conflicts that would remain hidden.
 +
 +The dangling @code{else} ambiguity (@pxref{Shift/Reduce, , Shift/Reduce
 +Conflicts}) can be solved explicitly.  This shift/reduce conflicts occurs
 +in the following situation, where the period denotes the current parsing
 +state:
 +
 +@example
 +if @var{e1} then if  @var{e2} then @var{s1} . else @var{s2}
 +@end example
 +
 +The conflict involves the reduction of the rule @samp{IF expr THEN
 +stmt}, which precedence is by default that of its last token
 +(@code{THEN}), and the shifting of the token @code{ELSE}.  The usual
 +disambiguation (attach the @code{else} to the closest @code{if}),
 +shifting must be preferred, i.e., the precedence of @code{ELSE} must be
 +higher than that of @code{THEN}.  But neither is expected to be involved
 +in an associativity related conflict, which can be specified as follows.
 +
 +@example
 +%precedence THEN
 +%precedence ELSE
 +@end example
 +
 +The unary-minus is another typical example where associativity is
 +usually over-specified, see @ref{Infix Calc, , Infix Notation
 +Calculator: @code{calc}}.  The @code{%left} directive is traditionally
 +used to declare the precedence of @code{NEG}, which is more than needed
 +since it also defines its associativity.  While this is harmless in the
 +traditional example, who knows how @code{NEG} might be used in future
 +evolutions of the grammar@dots{}
 +
  @node Precedence Examples
  @subsection Precedence Examples
  
@@@ -7199,8 -6871,8 +7200,8 @@@ outlandish at first, but it is really v
  sign typically has a very high precedence as a unary operator, and a
  somewhat lower precedence (lower than multiplication) as a binary operator.
  
 -The Bison precedence declarations, @code{%left}, @code{%right} and
 -@code{%nonassoc}, can only be used once for a given token; so a token has
 +The Bison precedence declarations
 +can only be used once for a given token; so a token has
  only one precedence declared in this way.  For context-dependent
  precedence, you need to use an additional mechanism: the @code{%prec}
  modifier for rules.
@@@ -7545,9 -7217,9 +7546,9 @@@ The default behavior of Bison's LR-base
  historical reasons, but that behavior is often not robust.  For example, in
  the previous section, we discussed the mysterious conflicts that can be
  produced by LALR(1), Bison's default parser table construction algorithm.
 -Another example is Bison's @code{%error-verbose} directive, which instructs
 -the generated parser to produce verbose syntax error messages, which can
 -sometimes contain incorrect information.
 +Another example is Bison's @code{%define parse.error verbose} directive,
 +which instructs the generated parser to produce verbose syntax error
 +messages, which can sometimes contain incorrect information.
  
  In this section, we explore several modern features of Bison that allow you
  to tune fundamental aspects of the generated LR-based parsers.  Some of
@@@ -7694,7 -7366,7 +7695,7 @@@ and the benefits of IELR, @pxref{Biblio
  @node Default Reductions
  @subsection Default Reductions
  @cindex default reductions
 -@findex %define lr.default-reductions
 +@findex %define lr.default-reduction
  @findex %nonassoc
  
  After parser table construction, Bison identifies the reduction with the
@@@ -7776,9 -7448,9 +7777,9 @@@ token for which there is a conflict.  T
  split the parse instead.
  
  To adjust which states have default reductions enabled, use the
 -@code{%define lr.default-reductions} directive.
 +@code{%define lr.default-reduction} directive.
  
 -@deffn {Directive} {%define lr.default-reductions @var{WHERE}}
 +@deffn {Directive} {%define lr.default-reduction @var{WHERE}}
  Specify the kind of states that are permitted to contain default reductions.
  The accepted values of @var{WHERE} are:
  @itemize
@@@ -7901,7 -7573,7 +7902,7 @@@ parser community for years, for the pub
  
  @node Unreachable States
  @subsection Unreachable States
 -@findex %define lr.keep-unreachable-states
 +@findex %define lr.keep-unreachable-state
  @cindex unreachable states
  
  If there exists no sequence of transitions from the parser's start state to
@@@ -7914,7 -7586,7 +7915,7 @@@ resolution because they are useless in 
  keeping unreachable states is sometimes useful when trying to understand the
  relationship between the parser and the grammar.
  
 -@deffn {Directive} {%define lr.keep-unreachable-states @var{VALUE}}
 +@deffn {Directive} {%define lr.keep-unreachable-state @var{VALUE}}
  Request that Bison allow unreachable states to remain in the parser tables.
  @var{VALUE} must be a Boolean.  The default is @code{false}.
  @end deffn
@@@ -8071,14 -7743,12 +8072,14 @@@ that allows variable-length arrays.  Th
  
  Do not allow @code{YYINITDEPTH} to be greater than @code{YYMAXDEPTH}.
  
 -@c FIXME: C++ output.
 -Because of semantic differences between C and C++, the deterministic
 -parsers in C produced by Bison cannot grow when compiled
 -by C++ compilers.  In this precise case (compiling a C parser as C++) you are
 -suggested to grow @code{YYINITDEPTH}.  The Bison maintainers hope to fix
 -this deficiency in a future release.
 +You can generate a deterministic parser containing C++ user code from
 +the default (C) skeleton, as well as from the C++ skeleton
 +(@pxref{C++ Parsers}).  However, if you do use the default skeleton
 +and want to allow the parsing stack to grow,
 +be careful not to use semantic types or location types that require
 +non-trivial copy constructors.
 +The C skeleton bypasses these constructors when copying data to
 +new, larger stacks.
  
  @node Error Recovery
  @chapter Error Recovery
@@@ -8426,6 -8096,7 +8427,7 @@@ automaton, and how to enable and unders
  @menu
  * Understanding::     Understanding the structure of your parser.
  * Graphviz::          Getting a visual representation of the parser.
+ * Xml::               Getting a markup representation of the parser.
  * Tracing::           Tracing the execution of your parser.
  @end menu
  
@@@ -8842,6 -8513,9 +8844,9 @@@ precedence of @samp{/} with respect to 
  @samp{*}, but also because the
  associativity of @samp{/} is not specified.
  
+ Note that Bison may also produce an HTML version of this output, via an XML
+ file and XSLT processing (@pxref{Xml}).
  @c ================================================= Graphical Representation
  
  @node Graphviz
@@@ -8949,6 -8623,54 +8954,54 @@@ is shown as a blue diamond, labelled "A
  The @samp{go to} jump transitions are represented as dotted lines bearing
  the name of the rule being jumped to.
  
+ Note that a DOT file may also be produced via an XML file and XSLT
+ processing (@pxref{Xml}).
+ @c ================================================= XML
+ @node Xml
+ @section Visualizing your parser in multiple formats
+ @cindex xml
+ Bison supports two major report formats: textual output
+ (@pxref{Understanding}) when invoked with option @option{--verbose}, and DOT
+ (@pxref{Graphviz}) when invoked with option @option{--graph}. However,
+ another alternative is to output an XML file that may then be, with
+ @command{xsltproc}, rendered as either a raw text format equivalent to the
+ verbose file, or as an HTML version of the same file, with clickable
+ transitions, or even as a DOT. The @file{.output} and DOT files obtained via
+ XSLT have no difference whatsoever with those obtained by invoking
+ @command{bison} with options @option{--verbose} or @option{--graph}.
+ The textual file is generated when the options @option{-x} or
+ @option{--xml[=FILE]} are specified, see @ref{Invocation,,Invoking Bison}.
+ If not specified, its name is made by removing @samp{.tab.c} or @samp{.c}
+ from the parser implementation file name, and adding @samp{.xml} instead.
+ For instance, if the grammar file is @file{foo.y}, the default XML output
+ file is @file{foo.xml}.
+ Bison ships with a @file{data/xslt} directory, containing XSL Transformation
+ files to apply to the XML file. Their names are non-ambiguous:
+ @table @file
+ @item xml2dot.xsl
+ Used to output a copy of the DOT visualization of the automaton.
+ @item xml2text.xsl
+ Used to output a copy of the .output file.
+ @item xml2xhtml.xsl
+ Used to output an xhtml enhancement of the .output file.
+ @end table
+ Sample usage (requires @code{xsltproc}):
+ @example
+ $ bison -x input.y
+ @group
+ $ bison --print-datadir
+ /usr/local/share/bison
+ @end group
+ $ xsltproc /usr/local/share/bison/xslt/xml2xhtml.xsl input.xml > input.html
+ @end example
  @c ================================================= Tracing
  
  @node Tracing
@@@ -8994,19 -8716,12 +9047,19 @@@ otherwise it defines @code{YYDEBUG} to 
  @item the directive @samp{%debug}
  @findex %debug
  Add the @code{%debug} directive (@pxref{Decl Summary, ,Bison Declaration
 -Summary}).  This is a Bison extension, especially useful for languages that
 -don't use a preprocessor.  Unless POSIX and Yacc portability matter to you,
 -this is the preferred solution.
 +Summary}).  This Bison extension is maintained for backward
 +compatibility with previous versions of Bison.
 +
 +@item the variable @samp{parse.trace}
 +@findex %define parse.trace
 +Add the @samp{%define parse.trace} directive (@pxref{%define
 +Summary,,parse.trace}), or pass the @option{-Dparse.trace} option
 +(@pxref{Bison Options}).  This is a Bison extension, which is especially
 +useful for languages that don't use a preprocessor.  Unless POSIX and Yacc
 +portability matter to you, this is the preferred solution.
  @end table
  
 -We suggest that you always enable the debug option so that debugging is
 +We suggest that you always enable the trace option so that debugging is
  always possible.
  
  @findex YYFPRINTF
@@@ -9405,10 -9120,6 +9458,10 @@@ unexpected number of conflicts is an er
  conflicts is not reported, so @option{-W} and @option{--warning} then have
  no effect on the conflict report.
  
 +@item deprecated
 +Deprecated constructs whose support will be removed in future versions of
 +Bison.
 +
  @item other
  All warnings not categorized above.  These warnings are enabled by default.
  
@@@ -9421,33 -9132,12 +9474,33 @@@ All the warnings
  @item none
  Turn off all the warnings.
  @item error
 -Treat warnings as errors.
 +See @option{-Werror}, below.
  @end table
  
  A category can be turned off by prefixing its name with @samp{no-}.  For
  instance, @option{-Wno-yacc} will hide the warnings about
  POSIX Yacc incompatibilities.
 +
 +@item -Werror[=@var{category}]
 +@itemx -Wno-error[=@var{category}]
 +Enable warnings falling in @var{category}, and treat them as errors.  If no
 +@var{category} is given, it defaults to making all enabled warnings into errors.
 +
 +@var{category} is the same as for @option{--warnings}, with the exception that
 +it may not be prefixed with @samp{no-} (see above).
 +
 +Prefixed with @samp{no}, it deactivates the error treatment for this
 +@var{category}. However, the warning itself won't be disabled, or enabled, by
 +this option.
 +
 +Note that the precedence of the @samp{=} and @samp{,} operators is such that
 +the following commands are @emph{not} equivalent, as the first will not treat
 +S/R conflicts as errors.
 +
 +@example
 +$ bison -Werror=yacc,conflicts-sr input.y
 +$ bison -Werror=yacc,error=conflicts-sr input.y
 +@end example
  @end table
  
  @noindent
@@@ -9693,18 -9383,17 +9746,18 @@@ The C++ deterministic parser is selecte
  
  When run, @command{bison} will create several entities in the @samp{yy}
  namespace.
 -@findex %define namespace
 -Use the @samp{%define namespace} directive to change the namespace
 -name, see @ref{%define Summary,,namespace}.  The various classes are
 -generated in the following files:
 +@findex %define api.namespace
 +Use the @samp{%define api.namespace} directive to change the namespace name,
 +see @ref{%define Summary,,api.namespace}.  The various classes are generated
 +in the following files:
  
  @table @file
  @item position.hh
  @itemx location.hh
  The definition of the classes @code{position} and @code{location}, used for
 -location tracking.  These files are not generated if the @code{%define}
 -variable @code{api.location.type} is defined.  @xref{C++ Location Values}.
 +location tracking when enabled.  These files are not generated if the
 +@code{%define} variable @code{api.location.type} is defined.  @xref{C++
 +Location Values}.
  
  @item stack.hh
  An auxiliary class @code{stack} used by the parser.
@@@ -9730,22 -9419,11 +9783,22 @@@ for a complete and accurate documentati
  @c - YYSTYPE
  @c - Printer and destructor
  
 +Bison supports two different means to handle semantic values in C++.  One is
 +alike the C interface, and relies on unions (@pxref{C++ Unions}).  As C++
 +practitioners know, unions are inconvenient in C++, therefore another
 +approach is provided, based on variants (@pxref{C++ Variants}).
 +
 +@menu
 +* C++ Unions::             Semantic values cannot be objects
 +* C++ Variants::           Using objects as semantic values
 +@end menu
 +
 +@node C++ Unions
 +@subsubsection C++ Unions
 +
  The @code{%union} directive works as for C, see @ref{Union Decl, ,The
  Collection of Value Types}.  In particular it produces a genuine
 -@code{union}@footnote{In the future techniques to allow complex types
 -within pseudo-unions (similar to Boost variants) might be implemented to
 -alleviate these issues.}, which have a few specific features in C++.
 +@code{union}, which have a few specific features in C++.
  @itemize @minus
  @item
  The type @code{YYSTYPE} is defined but its use is discouraged: rather
@@@ -9762,98 -9440,6 +9815,98 @@@ reclaimed automatically: using the @cod
  only means to avoid leaks.  @xref{Destructor Decl, , Freeing Discarded
  Symbols}.
  
 +@node C++ Variants
 +@subsubsection C++ Variants
 +
 +Starting with version 2.6, Bison provides a @emph{variant} based
 +implementation of semantic values for C++.  This alleviates all the
 +limitations reported in the previous section, and in particular, object
 +types can be used without pointers.
 +
 +To enable variant-based semantic values, set @code{%define} variable
 +@code{variant} (@pxref{%define Summary,, variant}).  Once this defined,
 +@code{%union} is ignored, and instead of using the name of the fields of the
 +@code{%union} to ``type'' the symbols, use genuine types.
 +
 +For instance, instead of
 +
 +@example
 +%union
 +@{
 +  int ival;
 +  std::string* sval;
 +@}
 +%token <ival> NUMBER;
 +%token <sval> STRING;
 +@end example
 +
 +@noindent
 +write
 +
 +@example
 +%token <int> NUMBER;
 +%token <std::string> STRING;
 +@end example
 +
 +@code{STRING} is no longer a pointer, which should fairly simplify the user
 +actions in the grammar and in the scanner (in particular the memory
 +management).
 +
 +Since C++ features destructors, and since it is customary to specialize
 +@code{operator<<} to support uniform printing of values, variants also
 +typically simplify Bison printers and destructors.
 +
 +Variants are stricter than unions.  When based on unions, you may play any
 +dirty game with @code{yylval}, say storing an @code{int}, reading a
 +@code{char*}, and then storing a @code{double} in it.  This is no longer
 +possible with variants: they must be initialized, then assigned to, and
 +eventually, destroyed.
 +
 +@deftypemethod {semantic_type} {T&} build<T> ()
 +Initialize, but leave empty.  Returns the address where the actual value may
 +be stored.  Requires that the variant was not initialized yet.
 +@end deftypemethod
 +
 +@deftypemethod {semantic_type} {T&} build<T> (const T& @var{t})
 +Initialize, and copy-construct from @var{t}.
 +@end deftypemethod
 +
 +
 +@strong{Warning}: We do not use Boost.Variant, for two reasons.  First, it
 +appeared unacceptable to require Boost on the user's machine (i.e., the
 +machine on which the generated parser will be compiled, not the machine on
 +which @command{bison} was run).  Second, for each possible semantic value,
 +Boost.Variant not only stores the value, but also a tag specifying its
 +type.  But the parser already ``knows'' the type of the semantic value, so
 +that would be duplicating the information.
 +
 +Therefore we developed light-weight variants whose type tag is external (so
 +they are really like @code{unions} for C++ actually).  But our code is much
 +less mature that Boost.Variant.  So there is a number of limitations in
 +(the current implementation of) variants:
 +@itemize
 +@item
 +Alignment must be enforced: values should be aligned in memory according to
 +the most demanding type.  Computing the smallest alignment possible requires
 +meta-programming techniques that are not currently implemented in Bison, and
 +therefore, since, as far as we know, @code{double} is the most demanding
 +type on all platforms, alignments are enforced for @code{double} whatever
 +types are actually used.  This may waste space in some cases.
 +
 +@item
 +Our implementation is not conforming with strict aliasing rules.  Alias
 +analysis is a technique used in optimizing compilers to detect when two
 +pointers are disjoint (they cannot ``meet'').  Our implementation breaks
 +some of the rules that G++ 4.4 uses in its alias analysis, so @emph{strict
 +alias analysis must be disabled}.  Use the option
 +@option{-fno-strict-aliasing} to compile the generated parser.
 +
 +@item
 +There might be portability issues we are not aware of.
 +@end itemize
 +
 +As far as we know, these limitations @emph{can} be alleviated.  All it takes
 +is some time and/or some talented C++ hacker willing to contribute to Bison.
  
  @node C++ Location Values
  @subsection C++ Location Values
@@@ -9876,8 -9462,8 +9929,8 @@@ In this section @code{uint} is an abbre
  genuine code only the latter is used.
  
  @menu
 -* C++ position::                One point in the source file
 -* C++ location::                Two points in the source file
 +* C++ position::         One point in the source file
 +* C++ location::         Two points in the source file
  * User Defined Location Type::  Required interface for locations
  @end menu
  
@@@ -10058,7 -9644,7 +10111,7 @@@ additional argument for its constructor
  
  @defcv {Type} {parser} {semantic_type}
  @defcvx {Type} {parser} {location_type}
 -The types for semantics value and locations.
 +The types for semantic values and locations (if enabled).
  @end defcv
  
  @defcv {Type} {parser} {token}
@@@ -10069,27 -9655,11 +10122,27 @@@ use @code{yy::parser::token::FOO}.  Th
  (@pxref{Calc++ Scanner}).
  @end defcv
  
 +@defcv {Type} {parser} {syntax_error}
 +This class derives from @code{std::runtime_error}.  Throw instances of it
 +from the scanner or from the user actions to raise parse errors.  This is
 +equivalent with first
 +invoking @code{error} to report the location and message of the syntax
 +error, and then to invoke @code{YYERROR} to enter the error-recovery mode.
 +But contrary to @code{YYERROR} which can only be invoked from user actions
 +(i.e., written in the action itself), the exception can be thrown from
 +function invoked from the user action.
 +@end defcv
 +
  @deftypemethod {parser} {} parser (@var{type1} @var{arg1}, ...)
  Build a new parser object.  There are no arguments by default, unless
  @samp{%parse-param @{@var{type1} @var{arg1}@}} was used.
  @end deftypemethod
  
 +@deftypemethod {syntax_error} {} syntax_error (const location_type& @var{l}, const std::string& @var{m})
 +@deftypemethodx {syntax_error} {} syntax_error (const std::string& @var{m})
 +Instantiate a syntax-error exception.
 +@end deftypemethod
 +
  @deftypemethod {parser} {int} parse ()
  Run the syntactic analysis, and return 0 on success, 1 otherwise.
  
@@@ -10112,11 -9682,9 +10165,11 @@@ or nonzero, full tracing
  @end deftypemethod
  
  @deftypemethod {parser} {void} error (const location_type& @var{l}, const std::string& @var{m})
 +@deftypemethodx {parser} {void} error (const std::string& @var{m})
  The definition for this member function must be supplied by the user:
  the parser uses it to report a parser error occurring at @var{l},
 -described by @var{m}.
 +described by @var{m}.  If location tracking is not enabled, the second
 +signature is used.
  @end deftypemethod
  
  
  
  The parser invokes the scanner by calling @code{yylex}.  Contrary to C
  parsers, C++ parsers are always pure: there is no point in using the
 -@code{%define api.pure} directive.  Therefore the interface is as follows.
 +@samp{%define api.pure} directive.  The actual interface with @code{yylex}
 +depends whether you use unions, or variants.
 +
 +@menu
 +* Split Symbols::         Passing symbols as two/three components
 +* Complete Symbols::      Making symbols a whole
 +@end menu
 +
 +@node Split Symbols
 +@subsubsection Split Symbols
 +
 +Therefore the interface is as follows.
  
  @deftypemethod {parser} {int} yylex (semantic_type* @var{yylval}, location_type* @var{yylloc}, @var{type1} @var{arg1}, ...)
 -Return the next token.  Its type is the return value, its semantic
 -value and location being @var{yylval} and @var{yylloc}.  Invocations of
 +@deftypemethodx {parser} {int} yylex (semantic_type* @var{yylval}, @var{type1} @var{arg1}, ...)
 +Return the next token.  Its type is the return value, its semantic value and
 +location (if enabled) being @var{yylval} and @var{yylloc}.  Invocations of
  @samp{%lex-param @{@var{type1} @var{arg1}@}} yield additional arguments.
  @end deftypemethod
  
 +Note that when using variants, the interface for @code{yylex} is the same,
 +but @code{yylval} is handled differently.
 +
 +Regular union-based code in Lex scanner typically look like:
 +
 +@example
 +[0-9]+   @{
 +           yylval.ival = text_to_int (yytext);
 +           return yy::parser::INTEGER;
 +         @}
 +[a-z]+   @{
 +           yylval.sval = new std::string (yytext);
 +           return yy::parser::IDENTIFIER;
 +         @}
 +@end example
 +
 +Using variants, @code{yylval} is already constructed, but it is not
 +initialized.  So the code would look like:
 +
 +@example
 +[0-9]+   @{
 +           yylval.build<int>() = text_to_int (yytext);
 +           return yy::parser::INTEGER;
 +         @}
 +[a-z]+   @{
 +           yylval.build<std::string> = yytext;
 +           return yy::parser::IDENTIFIER;
 +         @}
 +@end example
 +
 +@noindent
 +or
 +
 +@example
 +[0-9]+   @{
 +           yylval.build(text_to_int (yytext));
 +           return yy::parser::INTEGER;
 +         @}
 +[a-z]+   @{
 +           yylval.build(yytext);
 +           return yy::parser::IDENTIFIER;
 +         @}
 +@end example
 +
 +
 +@node Complete Symbols
 +@subsubsection Complete Symbols
 +
 +If you specified both @code{%define variant} and
 +@code{%define api.token.constructor},
 +the @code{parser} class also defines the class @code{parser::symbol_type}
 +which defines a @emph{complete} symbol, aggregating its type (i.e., the
 +traditional value returned by @code{yylex}), its semantic value (i.e., the
 +value passed in @code{yylval}, and possibly its location (@code{yylloc}).
 +
 +@deftypemethod {symbol_type} {} symbol_type (token_type @var{type},  const semantic_type& @var{value}, const location_type& @var{location})
 +Build a complete terminal symbol which token type is @var{type}, and which
 +semantic value is @var{value}.  If location tracking is enabled, also pass
 +the @var{location}.
 +@end deftypemethod
 +
 +This interface is low-level and should not be used for two reasons.  First,
 +it is inconvenient, as you still have to build the semantic value, which is
 +a variant, and second, because consistency is not enforced: as with unions,
 +it is still possible to give an integer as semantic value for a string.
 +
 +So for each token type, Bison generates named constructors as follows.
 +
 +@deftypemethod {symbol_type} {} make_@var{token} (const @var{value_type}& @var{value}, const location_type& @var{location})
 +@deftypemethodx {symbol_type} {} make_@var{token} (const location_type& @var{location})
 +Build a complete terminal symbol for the token type @var{token} (not
 +including the @code{api.token.prefix}) whose possible semantic value is
 +@var{value} of adequate @var{value_type}.  If location tracking is enabled,
 +also pass the @var{location}.
 +@end deftypemethod
 +
 +For instance, given the following declarations:
 +
 +@example
 +%define api.token.prefix "TOK_"
 +%token <std::string> IDENTIFIER;
 +%token <int> INTEGER;
 +%token COLON;
 +@end example
 +
 +@noindent
 +Bison generates the following functions:
 +
 +@example
 +symbol_type make_IDENTIFIER(const std::string& v,
 +                            const location_type& l);
 +symbol_type make_INTEGER(const int& v,
 +                         const location_type& loc);
 +symbol_type make_COLON(const location_type& loc);
 +@end example
 +
 +@noindent
 +which should be used in a Lex-scanner as follows.
 +
 +@example
 +[0-9]+   return yy::parser::make_INTEGER(text_to_int (yytext), loc);
 +[a-z]+   return yy::parser::make_IDENTIFIER(yytext, loc);
 +":"      return yy::parser::make_COLON(loc);
 +@end example
 +
 +Tokens that do not have an identifier are not accessible: you cannot simply
 +use characters such as @code{':'}, they must be declared with @code{%token}.
  
  @node A Complete C++ Example
  @subsection A Complete C++ Example
  
  This section demonstrates the use of a C++ parser with a simple but
  complete example.  This example should be available on your system,
 -ready to compile, in the directory @dfn{../bison/examples/calc++}.  It
 +ready to compile, in the directory @dfn{.../bison/examples/calc++}.  It
  focuses on the use of Bison, therefore the design of the various C++
  classes is very naive: no accessors, no encapsulation of members etc.
  We will use a Lex scanner, and more precisely, a Flex scanner, to
 -demonstrate the various interaction.  A hand written scanner is
 +demonstrate the various interactions.  A hand-written scanner is
  actually easier to interface with.
  
  @menu
@@@ -10329,8 -9778,11 +10382,8 @@@ factor both as follows
  @comment file: calc++-driver.hh
  @example
  // Tell Flex the lexer's prototype ...
 -# define YY_DECL                                        \
 -  yy::calcxx_parser::token_type                         \
 -  yylex (yy::calcxx_parser::semantic_type* yylval,      \
 -         yy::calcxx_parser::location_type* yylloc,      \
 -         calcxx_driver& driver)
 +# define YY_DECL \
 +  yy::calcxx_parser::symbol_type yylex (calcxx_driver& driver)
  // ... and declare it for the parser's sake.
  YY_DECL;
  @end example
@@@ -10354,8 -9806,8 +10407,8 @@@ public
  @end example
  
  @noindent
 -To encapsulate the coordination with the Flex scanner, it is useful to
 -have two members function to open and close the scanning phase.
 +To encapsulate the coordination with the Flex scanner, it is useful to have
 +member functions to open and close the scanning phase.
  
  @comment file: calc++-driver.hh
  @example
@@@ -10370,13 -9822,9 +10423,13 @@@ Similarly for the parser itself
  
  @comment file: calc++-driver.hh
  @example
 -  // Run the parser.  Return 0 on success.
 +  // Run the parser on file F.
 +  // Return 0 on success.
    int parse (const std::string& f);
 +  // The name of the file being parsed.
 +  // Used later to pass the file name to the location tracker.
    std::string file;
 +  // Whether parser traces should be generated.
    bool trace_parsing;
  @end example
  
@@@ -10458,35 -9906,19 +10511,35 @@@ the grammar for
  %define parser_class_name "calcxx_parser"
  @end example
  
 +@noindent
 +@findex %define api.token.constructor
 +@findex %define variant
 +This example will use genuine C++ objects as semantic values, therefore, we
 +require the variant-based interface.  To make sure we properly use it, we
 +enable assertions.  To fully benefit from type-safety and more natural
 +definition of ``symbol'', we enable @code{api.token.constructor}.
 +
 +@comment file: calc++-parser.yy
 +@example
 +%define api.token.constructor
 +%define parse.assert
 +%define variant
 +@end example
 +
  @noindent
  @findex %code requires
 -Then come the declarations/inclusions needed to define the
 -@code{%union}.  Because the parser uses the parsing driver and
 -reciprocally, both cannot include the header of the other.  Because the
 +Then come the declarations/inclusions needed by the semantic values.
 +Because the parser uses the parsing driver and reciprocally, both would like
 +to include the header of the other, which is, of course, insane.  This
 +mutual dependency will be broken using forward declarations.  Because the
  driver's header needs detailed knowledge about the parser class (in
 -particular its inner types), it is the parser's header which will simply
 -use a forward declaration of the driver.
 -@xref{%code Summary}.
 +particular its inner types), it is the parser's header which will use a
 +forward declaration of the driver.  @xref{%code Summary}.
  
  @comment file: calc++-parser.yy
  @example
 -%code requires @{
 +%code requires
 +@{
  # include <string>
  class calcxx_driver;
  @}
@@@ -10500,14 -9932,15 +10553,14 @@@ global variables
  @comment file: calc++-parser.yy
  @example
  // The parsing context.
 -%parse-param @{ calcxx_driver& driver @}
 -%lex-param   @{ calcxx_driver& driver @}
 +%param @{ calcxx_driver& driver @}
  @end example
  
  @noindent
 -Then we request the location tracking feature, and initialize the
 +Then we request location tracking, and initialize the
  first location's file name.  Afterward new locations are computed
  relatively to the previous locations: the file name will be
 -automatically propagated.
 +propagated.
  
  @comment file: calc++-parser.yy
  @example
  @end example
  
  @noindent
 -Use the two following directives to enable parser tracing and verbose error
 +Use the following two directives to enable parser tracing and verbose error
  messages.  However, verbose error messages can contain incorrect information
  (@pxref{LAC}).
  
  @comment file: calc++-parser.yy
  @example
 -%debug
 -%error-verbose
 -@end example
 -
 -@noindent
 -Semantic values cannot use ``real'' objects, but only pointers to
 -them.
 -
 -@comment file: calc++-parser.yy
 -@example
 -// Symbols.
 -%union
 -@{
 -  int          ival;
 -  std::string *sval;
 -@};
 +%define parse.trace
 +%define parse.error verbose
  @end example
  
  @noindent
@@@ -10537,8 -9984,7 +10590,8 @@@ The code between @samp{%code @{} and @s
  
  @comment file: calc++-parser.yy
  @example
 -%code @{
 +%code
 +@{
  # include "calc++-driver.hh"
  @}
  @end example
  
  @noindent
  The token numbered as 0 corresponds to end of file; the following line
 -allows for nicer error messages referring to ``end of file'' instead
 -of ``$end''.  Similarly user friendly named are provided for each
 -symbol.  Note that the tokens names are prefixed by @code{TOKEN_} to
 -avoid name clashes.
 +allows for nicer error messages referring to ``end of file'' instead of
 +``$end''.  Similarly user friendly names are provided for each symbol.  To
 +avoid name clashes in the generated files (@pxref{Calc++ Scanner}), prefix
 +tokens with @code{TOK_} (@pxref{%define Summary,,api.token.prefix}).
  
  @comment file: calc++-parser.yy
  @example
 -%token        END      0 "end of file"
 -%token        ASSIGN     ":="
 -%token <sval> IDENTIFIER "identifier"
 -%token <ival> NUMBER     "number"
 -%type  <ival> exp
 +%define api.token.prefix "TOK_"
 +%token
 +  END  0  "end of file"
 +  ASSIGN  ":="
 +  MINUS   "-"
 +  PLUS    "+"
 +  STAR    "*"
 +  SLASH   "/"
 +  LPAREN  "("
 +  RPAREN  ")"
 +;
  @end example
  
  @noindent
 -To enable memory deallocation during error recovery, use
 -@code{%destructor}.
 +Since we use variant-based semantic values, @code{%union} is not used, and
 +both @code{%type} and @code{%token} expect genuine types, as opposed to type
 +tags.
  
 -@c FIXME: Document %printer, and mention that it takes a braced-code operand.
  @comment file: calc++-parser.yy
  @example
 -%printer    @{ yyoutput << *$$; @} "identifier"
 -%destructor @{ delete $$; @} "identifier"
 +%token <std::string> IDENTIFIER "identifier"
 +%token <int> NUMBER "number"
 +%type  <int> exp
 +@end example
 +
 +@noindent
 +No @code{%destructor} is needed to enable memory deallocation during error
 +recovery; the memory, for strings for instance, will be reclaimed by the
 +regular destructors.  All the values are printed using their
 +@code{operator<<} (@pxref{Printer Decl, , Printing Semantic Values}).
  
 -%printer    @{ yyoutput << $$; @} <ival>
 +@comment file: calc++-parser.yy
 +@example
 +%printer @{ yyoutput << $$; @} <*>;
  @end example
  
  @noindent
 -The grammar itself is straightforward.
 +The grammar itself is straightforward (@pxref{Location Tracking Calc, ,
 +Location Tracking Calculator: @code{ltcalc}}).
  
  @comment file: calc++-parser.yy
  @example
@@@ -10604,18 -10033,17 +10657,18 @@@ assignments
  | assignments assignment @{@};
  
  assignment:
 -     "identifier" ":=" exp
 -       @{ driver.variables[*$1] = $3; delete $1; @};
 -
 -%left '+' '-';
 -%left '*' '/';
 -exp: exp '+' exp   @{ $$ = $1 + $3; @}
 -   | exp '-' exp   @{ $$ = $1 - $3; @}
 -   | exp '*' exp   @{ $$ = $1 * $3; @}
 -   | exp '/' exp   @{ $$ = $1 / $3; @}
 -   | "identifier"  @{ $$ = driver.variables[*$1]; delete $1; @}
 -   | "number"      @{ $$ = $1; @};
 +  "identifier" ":=" exp @{ driver.variables[$1] = $3; @};
 +
 +%left "+" "-";
 +%left "*" "/";
 +exp:
 +  exp "+" exp   @{ $$ = $1 + $3; @}
 +| exp "-" exp   @{ $$ = $1 - $3; @}
 +| exp "*" exp   @{ $$ = $1 * $3; @}
 +| exp "/" exp   @{ $$ = $1 / $3; @}
 +| "(" exp ")"   @{ std::swap ($$, $2); @}
 +| "identifier"  @{ $$ = driver.variables[$1]; @}
 +| "number"      @{ std::swap ($$, $1); @};
  %%
  @end example
  
@@@ -10626,7 -10054,7 +10679,7 @@@ driver
  @comment file: calc++-parser.yy
  @example
  void
 -yy::calcxx_parser::error (const yy::calcxx_parser::location_type& l,
 +yy::calcxx_parser::error (const location_type& l,
                            const std::string& m)
  @{
    driver.error (l, m);
@@@ -10642,22 -10070,24 +10695,22 @@@ parser's to get the set of defined toke
  @comment file: calc++-scanner.ll
  @example
  %@{ /* -*- C++ -*- */
 -# include <cstdlib>
  # include <cerrno>
  # include <climits>
 +# include <cstdlib>
  # include <string>
  # include "calc++-driver.hh"
  # include "calc++-parser.hh"
  
 -/* Work around an incompatibility in flex (at least versions
 -   2.5.31 through 2.5.33): it generates code that does
 -   not conform to C89.  See Debian bug 333231
 -   <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>.  */
 +// Work around an incompatibility in flex (at least versions
 +// 2.5.31 through 2.5.33): it generates code that does
 +// not conform to C89.  See Debian bug 333231
 +// <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>.
  # undef yywrap
  # define yywrap() 1
  
 -/* By default yylex returns int, we use token_type.
 -   Unfortunately yyterminate by default returns 0, which is
 -   not of token_type.  */
 -#define yyterminate() return token::END
 +// The location of the current token.
 +static yy::location loc;
  %@}
  @end example
  
  Because there is no @code{#include}-like feature we don't need
  @code{yywrap}, we don't need @code{unput} either, and we parse an
  actual file, this is not an interactive session with the user.
 -Finally we enable the scanner tracing features.
 +Finally, we enable scanner tracing.
  
  @comment file: calc++-scanner.ll
  @example
@@@ -10685,8 -10115,8 +10738,8 @@@ blank [ \t
  @noindent
  The following paragraph suffices to track locations accurately.  Each
  time @code{yylex} is invoked, the begin position is moved onto the end
 -position.  Then when a pattern is matched, the end position is
 -advanced of its width.  In case it matched ends of lines, the end
 +position.  Then when a pattern is matched, its width is added to the end
 +column.  When matching ends of lines, the end
  cursor is adjusted, and each time blanks are matched, the begin cursor
  is moved onto the end cursor to effectively ignore the blanks
  preceding tokens.  Comments would be treated equally.
  @example
  @group
  %@{
 -# define YY_USER_ACTION  yylloc->columns (yyleng);
 +  // Code run each time a pattern is matched.
 +  # define YY_USER_ACTION  loc.columns (yyleng);
  %@}
  @end group
  %%
 +@group
  %@{
 -  yylloc->step ();
 +  // Code run each time yylex is called.
 +  loc.step ();
  %@}
 -@{blank@}+   yylloc->step ();
 -[\n]+      yylloc->lines (yyleng); yylloc->step ();
 +@end group
 +@{blank@}+   loc.step ();
 +[\n]+      loc.lines (yyleng); loc.step ();
  @end example
  
  @noindent
 -The rules are simple, just note the use of the driver to report errors.
 -It is convenient to use a typedef to shorten
 -@code{yy::calcxx_parser::token::identifier} into
 -@code{token::identifier} for instance.
 +The rules are simple.  The driver is used to report errors.
  
  @comment file: calc++-scanner.ll
  @example
 -%@{
 -  typedef yy::calcxx_parser::token token;
 -%@}
 -           /* Convert ints to the actual type of tokens.  */
 -[-+*/]     return yy::calcxx_parser::token_type (yytext[0]);
 -":="       return token::ASSIGN;
 +"-"      return yy::calcxx_parser::make_MINUS(loc);
 +"+"      return yy::calcxx_parser::make_PLUS(loc);
 +"*"      return yy::calcxx_parser::make_STAR(loc);
 +"/"      return yy::calcxx_parser::make_SLASH(loc);
 +"("      return yy::calcxx_parser::make_LPAREN(loc);
 +")"      return yy::calcxx_parser::make_RPAREN(loc);
 +":="     return yy::calcxx_parser::make_ASSIGN(loc);
 +
 +@group
  @{int@}      @{
    errno = 0;
    long n = strtol (yytext, NULL, 10);
    if (! (INT_MIN <= n && n <= INT_MAX && errno != ERANGE))
 -    driver.error (*yylloc, "integer is out of range");
 -  yylval->ival = n;
 -  return token::NUMBER;
 +    driver.error (loc, "integer is out of range");
 +  return yy::calcxx_parser::make_NUMBER(n, loc);
  @}
 -@{id@}       yylval->sval = new std::string (yytext); return token::IDENTIFIER;
 -.          driver.error (*yylloc, "invalid character");
 +@end group
 +@{id@}       return yy::calcxx_parser::make_IDENTIFIER(yytext, loc);
 +.          driver.error (loc, "invalid character");
 +<<EOF>>    return yy::calcxx_parser::make_END(loc);
  %%
  @end example
  
  @noindent
 -Finally, because the scanner related driver's member function depend
 +Finally, because the scanner-related driver's member-functions depend
  on the scanner's data, it is simpler to implement them in this file.
  
  @comment file: calc++-scanner.ll
@@@ -10782,7 -10207,6 +10835,7 @@@ The top level file, @file{calc++.cc}, p
  int
  main (int argc, char *argv[])
  @{
 +  int res = 0;
    calcxx_driver driver;
    for (int i = 1; i < argc; ++i)
      if (argv[i] == std::string ("-p"))
        driver.trace_scanning = true;
      else if (!driver.parse (argv[i]))
        std::cout << driver.result << std::endl;
 +    else
 +      res = 1;
 +  return res;
  @}
  @end group
  @end example
@@@ -10838,7 -10259,7 +10891,7 @@@ You can create documentation for genera
  Contrary to C parsers, Java parsers do not use global variables; the
  state of the parser is always local to an instance of the parser class.
  Therefore, all Java parsers are ``pure'', and the @code{%pure-parser}
 -and @code{%define api.pure} directives does not do anything when used in
 +and @samp{%define api.pure} directives does not do anything when used in
  Java.
  
  Push parsers are currently unsupported in Java and @code{%define
@@@ -10851,23 -10272,15 +10904,23 @@@ No header file can be generated for Jav
  @code{%defines} directive or the @option{-d}/@option{--defines} options.
  
  @c FIXME: Possible code change.
 -Currently, support for debugging and verbose errors are always compiled
 -in.  Thus the @code{%debug} and @code{%token-table} directives and the
 +Currently, support for tracing is always compiled
 +in.  Thus the @samp{%define parse.trace} and @samp{%token-table}
 +directives and the
  @option{-t}/@option{--debug} and @option{-k}/@option{--token-table}
  options have no effect.  This may change in the future to eliminate
 -unused code in the generated parser, so use @code{%debug} and
 -@code{%verbose-error} explicitly if needed.  Also, in the future the
 +unused code in the generated parser, so use @samp{%define parse.trace}
 +explicitly
 +if needed.  Also, in the future the
  @code{%token-table} directive might enable a public interface to
  access the token names and codes.
  
 +Getting a ``code too large'' error from the Java compiler means the code
 +hit the 64KB bytecode per method limitation of the Java class file.
 +Try reducing the amount of code in actions and static initializers;
 +otherwise, report a bug so that the parser skeleton will be improved.
 +
 +
  @node Java Semantic Values
  @subsection Java Semantic Values
  @c - No %union, specify type in %type/%token.
@@@ -10886,7 -10299,7 +10939,7 @@@ semantic values' types (class names) sh
  By default, the semantic stack is declared to have @code{Object} members,
  which means that the class types you specify can be of any class.
  To improve the type safety of the parser, you can declare the common
 -superclass of all the semantic values using the @code{%define stype}
 +superclass of all the semantic values using the @samp{%define stype}
  directive.  For example, after the following declaration:
  
  @example
@@@ -10964,22 -10377,20 +11017,22 @@@ properly, the position class should ove
  The name of the generated parser class defaults to @code{YYParser}.  The
  @code{YY} prefix may be changed using the @code{%name-prefix} directive
  or the @option{-p}/@option{--name-prefix} option.  Alternatively, use
 -@code{%define parser_class_name "@var{name}"} to give a custom name to
 +@samp{%define parser_class_name "@var{name}"} to give a custom name to
  the class.  The interface of this class is detailed below.
  
  By default, the parser class has package visibility.  A declaration
 -@code{%define public} will change to public visibility.  Remember that,
 +@samp{%define public} will change to public visibility.  Remember that,
  according to the Java language specification, the name of the @file{.java}
  file should match the name of the class in this case.  Similarly, you can
  use @code{abstract}, @code{final} and @code{strictfp} with the
  @code{%define} declaration to add other modifiers to the parser class.
 +A single @samp{%define annotations "@var{annotations}"} directive can
 +be used to add any number of annotations to the parser class.
  
  The Java package name of the parser class can be specified using the
 -@code{%define package} directive.  The superclass and the implemented
 +@samp{%define package} directive.  The superclass and the implemented
  interfaces of the parser class can be specified with the @code{%define
 -extends} and @code{%define implements} directives.
 +extends} and @samp{%define implements} directives.
  
  The parser class defines an inner class, @code{Location}, that is used
  for location tracking (see @ref{Java Location Values}), and a inner
@@@ -10988,33 -10399,30 +11041,33 @@@ these inner class/interface, and the me
  below, all the other members and fields are preceded with a @code{yy} or
  @code{YY} prefix to avoid clashes with user code.
  
 -@c FIXME: The following constants and variables are still undocumented:
 -@c @code{bisonVersion}, @code{bisonSkeleton} and @code{errorVerbose}.
 -
  The parser class can be extended using the @code{%parse-param}
  directive. Each occurrence of the directive will add a @code{protected
  final} field to the parser class, and an argument to its constructor,
  which initialize them automatically.
  
 -Token names defined by @code{%token} and the predefined @code{EOF} token
 -name are added as constant fields to the parser class.
 -
  @deftypeop {Constructor} {YYParser} {} YYParser (@var{lex_param}, @dots{}, @var{parse_param}, @dots{})
  Build a new parser object with embedded @code{%code lexer}.  There are
 -no parameters, unless @code{%parse-param}s and/or @code{%lex-param}s are
 -used.
 +no parameters, unless @code{%param}s and/or @code{%parse-param}s and/or
 +@code{%lex-param}s are used.
 +
 +Use @code{%code init} for code added to the start of the constructor
 +body. This is especially useful to initialize superclasses. Use
 +@samp{%define init_throws} to specify any uncaught exceptions.
  @end deftypeop
  
  @deftypeop {Constructor} {YYParser} {} YYParser (Lexer @var{lexer}, @var{parse_param}, @dots{})
  Build a new parser object using the specified scanner.  There are no
 -additional parameters unless @code{%parse-param}s are used.
 +additional parameters unless @code{%param}s and/or @code{%parse-param}s are
 +used.
  
  If the scanner is defined by @code{%code lexer}, this constructor is
  declared @code{protected} and is called automatically with a scanner
 -created with the correct @code{%lex-param}s.
 +created with the correct @code{%param}s and/or @code{%lex-param}s.
 +
 +Use @code{%code init} for code added to the start of the constructor
 +body. This is especially useful to initialize superclasses. Use
 +@samp{%define init_throws} to specify any uncaught exceptions.
  @end deftypeop
  
  @deftypemethod {YYParser} {boolean} parse ()
@@@ -11022,21 -10430,6 +11075,21 @@@ Run the syntactic analysis, and return 
  @code{false} otherwise.
  @end deftypemethod
  
 +@deftypemethod {YYParser} {boolean} getErrorVerbose ()
 +@deftypemethodx {YYParser} {void} setErrorVerbose (boolean @var{verbose})
 +Get or set the option to produce verbose error messages.  These are only
 +available with @samp{%define parse.error verbose}, which also turns on
 +verbose error messages.
 +@end deftypemethod
 +
 +@deftypemethod {YYParser} {void} yyerror (String @var{msg})
 +@deftypemethodx {YYParser} {void} yyerror (Position @var{pos}, String @var{msg})
 +@deftypemethodx {YYParser} {void} yyerror (Location @var{loc}, String @var{msg})
 +Print an error message using the @code{yyerror} method of the scanner
 +instance in use. The @code{Location} and @code{Position} parameters are
 +available only if location tracking is active.
 +@end deftypemethod
 +
  @deftypemethod {YYParser} {boolean} recovering ()
  During the syntactic analysis, return @code{true} if recovering
  from a syntax error.
@@@ -11055,11 -10448,6 +11108,11 @@@ Get or set the tracing level.  Currentl
  or nonzero, full tracing.
  @end deftypemethod
  
 +@deftypecv {Constant} {YYParser} {String} {bisonVersion}
 +@deftypecvx {Constant} {YYParser} {String} {bisonSkeleton}
 +Identify the Bison version and skeleton used to generate this parser.
 +@end deftypecv
 +
  
  @node Java Scanner Interface
  @subsection Java Scanner Interface
  There are two possible ways to interface a Bison-generated Java parser
  with a scanner: the scanner may be defined by @code{%code lexer}, or
  defined elsewhere.  In either case, the scanner has to implement the
 -@code{Lexer} inner interface of the parser class.
 +@code{Lexer} inner interface of the parser class.  This interface also
 +contain constants for all user-defined token names and the predefined
 +@code{EOF} token.
  
  In the first case, the body of the scanner class is placed in
  @code{%code lexer} blocks.  If you want to pass parameters from the
@@@ -11099,7 -10485,7 +11152,7 @@@ Return the next token.  Its type is th
  value and location are saved and returned by the their methods in the
  interface.
  
 -Use @code{%define lex_throws} to specify any uncaught exceptions.
 +Use @samp{%define lex_throws} to specify any uncaught exceptions.
  Default is @code{java.io.IOException}.
  @end deftypemethod
  
@@@ -11116,7 -10502,7 +11169,7 @@@ The return type can be changed using @c
  @deftypemethod {Lexer} {Object} getLVal ()
  Return the semantic value of the last token that yylex returned.
  
 -The return type can be changed using @code{%define stype
 +The return type can be changed using @samp{%define stype
  "@var{class-name}".}
  @end deftypemethod
  
  The following special constructs can be uses in Java actions.
  Other analogous C action features are currently unavailable for Java.
  
 -Use @code{%define throws} to specify any uncaught exceptions from parser
 +Use @samp{%define throws} to specify any uncaught exceptions from parser
  actions, and initial actions specified by @code{%initial-action}.
  
  @defvar $@var{n}
@@@ -11144,7 -10530,7 +11197,7 @@@ Like @code{$@var{n}} but specifies a al
  @defvar $$
  The semantic value for the grouping made by the current rule.  As a
  value, this is in the base type (@code{Object} or as specified by
 -@code{%define stype}) as in not cast to the declared subtype because
 +@samp{%define stype}) as in not cast to the declared subtype because
  casts are not allowed on the left-hand side of Java assignments.
  Use an explicit Java cast if the correct subtype is needed.
  @xref{Java Semantic Values}.
@@@ -11191,12 -10577,11 +11244,12 @@@ operation
  @xref{Error Recovery}.
  @end deftypefn
  
 -@deftypefn  {Function} {protected void} yyerror (String msg)
 -@deftypefnx {Function} {protected void} yyerror (Position pos, String msg)
 -@deftypefnx {Function} {protected void} yyerror (Location loc, String msg)
 +@deftypefn  {Function} {void} yyerror (String @var{msg})
 +@deftypefnx {Function} {void} yyerror (Position @var{loc}, String @var{msg})
 +@deftypefnx {Function} {void} yyerror (Location @var{loc}, String @var{msg})
  Print an error message using the @code{yyerror} method of the scanner
 -instance in use.
 +instance in use. The @code{Location} and @code{Position} parameters are
 +available only if location tracking is active.
  @end deftypefn
  
  
@@@ -11240,7 -10625,7 +11293,7 @@@ The prologue declarations have a differ
  @item @code{%code imports}
  blocks are placed at the beginning of the Java source code.  They may
  include copyright notices.  For a @code{package} declarations, it is
 -suggested to use @code{%define package} instead.
 +suggested to use @samp{%define package} instead.
  
  @item unqualified @code{%code}
  blocks are placed inside the parser class.
@@@ -11281,7 -10666,7 +11334,7 @@@ constructor that @emph{creates} a lexer
  
  @deffn {Directive} %name-prefix "@var{prefix}"
  The prefix of the parser class name @code{@var{prefix}Parser} if
 -@code{%define parser_class_name} is not used.  Default is @code{YY}.
 +@samp{%define parser_class_name} is not used.  Default is @code{YY}.
  @xref{Java Bison Interface}.
  @end deffn
  
@@@ -11312,11 -10697,6 +11365,11 @@@ Code inserted just after the @code{pack
  @xref{Java Differences}.
  @end deffn
  
 +@deffn {Directive} {%code init} @{ @var{code} @dots{} @}
 +Code inserted at the beginning of the parser constructor body.
 +@xref{Java Parser Interface}.
 +@end deffn
 +
  @deffn {Directive} {%code lexer} @{ @var{code} @dots{} @}
  Code added to the body of a inner lexer class within the parser class.
  @xref{Java Scanner Interface}.
@@@ -11329,7 -10709,7 +11382,7 @@@ Code (after the second @code{%%}) appen
  @end deffn
  
  @deffn {Directive} %@{ @var{code} @dots{} %@}
 -Not supported.  Use @code{%code import} instead.
 +Not supported.  Use @code{%code imports} instead.
  @xref{Java Differences}.
  @end deffn
  
@@@ -11338,11 -10718,6 +11391,11 @@@ Whether the parser class is declared @c
  @xref{Java Bison Interface}.
  @end deffn
  
 +@deffn {Directive} {%define annotations} "@var{annotations}"
 +The Java annotations for the parser class.  Default is none.
 +@xref{Java Bison Interface}.
 +@end deffn
 +
  @deffn {Directive} {%define extends} "@var{superclass}"
  The superclass of the parser class.  Default is none.
  @xref{Java Bison Interface}.
@@@ -11359,12 -10734,6 +11412,12 @@@ Default is none
  @xref{Java Bison Interface}.
  @end deffn
  
 +@deffn {Directive} {%define init_throws} "@var{exceptions}"
 +The exceptions thrown by @code{%code init} from the parser class
 +constructor.  Default is none.
 +@xref{Java Parser Interface}.
 +@end deffn
 +
  @deffn {Directive} {%define lex_throws} "@var{exceptions}"
  The exceptions thrown by the @code{yylex} method of the lexer, a
  comma-separated list.  Default is @code{java.io.IOException}.
@@@ -11884,19 -11253,6 +11937,19 @@@ the grammar file.  @xref{Grammar Outlin
  Grammar}.
  @end deffn
  
 +@deffn {Directive} %?@{@var{expression}@}
 +Predicate actions.  This is a type of action clause that may appear in
 +rules. The expression is evaluated, and if false, causes a syntax error.  In
 +GLR parsers during nondeterministic operation,
 +this silently causes an alternative parse to die.  During deterministic
 +operation, it is the same as the effect of YYERROR.
 +@xref{Semantic Predicates}.
 +
 +This feature is experimental.
 +More user feedback will help to determine whether it should become a permanent
 +feature.
 +@end deffn
 +
  @deffn {Construct} /*@dots{}*/
  Comment delimiters, as in C.
  @end deffn
@@@ -12006,8 -11362,8 +12059,8 @@@ token is reset to the token that origin
  @end deffn
  
  @deffn {Directive} %error-verbose
 -Bison declaration to request verbose, specific error message strings
 -when @code{yyerror} is called.  @xref{Error Reporting}.
 +An obsolete directive standing for @samp{%define parse.error verbose}
 +(@pxref{Error Reporting, ,The Error Reporting Function @code{yyerror}}).
  @end deffn
  
  @deffn {Directive} %file-prefix "@var{prefix}"
@@@ -12030,12 -11386,12 +12083,12 @@@ Specify the programming language for th
  @end deffn
  
  @deffn {Directive} %left
 -Bison declaration to assign left associativity to token(s).
 +Bison declaration to assign precedence and left associativity to token(s).
  @xref{Precedence Decl, ,Operator Precedence}.
  @end deffn
  
 -@deffn {Directive} %lex-param @{@var{argument-declaration}@}
 -Bison declaration to specifying an additional parameter that
 +@deffn {Directive} %lex-param @{@var{argument-declaration}@} @dots{}
 +Bison declaration to specifying additional arguments that
  @code{yylex} should accept.  @xref{Pure Calling,, Calling Conventions
  for Pure Parsers}.
  @end deffn
@@@ -12080,7 -11436,7 +12133,7 @@@ parser implementation file.  @xref{Dec
  @end deffn
  
  @deffn {Directive} %nonassoc
 -Bison declaration to assign nonassociativity to token(s).
 +Bison declaration to assign precedence and nonassociativity to token(s).
  @xref{Precedence Decl, ,Operator Precedence}.
  @end deffn
  
@@@ -12089,15 -11445,10 +12142,15 @@@ Bison declaration to set the name of th
  @xref{Decl Summary}.
  @end deffn
  
 -@deffn {Directive} %parse-param @{@var{argument-declaration}@}
 -Bison declaration to specifying an additional parameter that
 -@code{yyparse} should accept.  @xref{Parser Function,, The Parser
 -Function @code{yyparse}}.
 +@deffn {Directive} %param @{@var{argument-declaration}@} @dots{}
 +Bison declaration to specify additional arguments that both
 +@code{yylex} and @code{yyparse} should accept.  @xref{Parser Function,, The
 +Parser Function @code{yyparse}}.
 +@end deffn
 +
 +@deffn {Directive} %parse-param @{@var{argument-declaration}@} @dots{}
 +Bison declaration to specify additional arguments that @code{yyparse}
 +should accept.  @xref{Parser Function,, The Parser Function @code{yyparse}}.
  @end deffn
  
  @deffn {Directive} %prec
@@@ -12105,13 -11456,8 +12158,13 @@@ Bison declaration to assign a precedenc
  @xref{Contextual Precedence, ,Context-Dependent Precedence}.
  @end deffn
  
 +@deffn {Directive} %precedence
 +Bison declaration to assign precedence to token(s), but no associativity
 +@xref{Precedence Decl, ,Operator Precedence}.
 +@end deffn
 +
  @deffn {Directive} %pure-parser
 -Deprecated version of @code{%define api.pure} (@pxref{%define
 +Deprecated version of @samp{%define api.pure} (@pxref{%define
  Summary,,api.pure}), for which Bison is more careful to warn about
  unreasonable usage.
  @end deffn
@@@ -12122,7 -11468,7 +12175,7 @@@ Require a Version of Bison}
  @end deffn
  
  @deffn {Directive} %right
 -Bison declaration to assign right associativity to token(s).
 +Bison declaration to assign precedence and right associativity to token(s).
  @xref{Precedence Decl, ,Operator Precedence}.
  @end deffn
  
@@@ -12227,16 -11573,17 +12280,16 @@@ instead
  
  @deffn {Function} yyerror
  User-supplied function to be called by @code{yyparse} on error.
 -@xref{Error Reporting, ,The Error
 -Reporting Function @code{yyerror}}.
 +@xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
  @end deffn
  
  @deffn {Macro} YYERROR_VERBOSE
 -An obsolete macro that you define with @code{#define} in the prologue
 -to request verbose, specific error message strings
 -when @code{yyerror} is called.  It doesn't matter what definition you
 -use for @code{YYERROR_VERBOSE}, just whether you define it.
 -Supported by the C skeletons only; using
 -@code{%error-verbose} is preferred.  @xref{Error Reporting}.
 +An obsolete macro used in the @file{yacc.c} skeleton, that you define
 +with @code{#define} in the prologue to request verbose, specific error
 +message strings when @code{yyerror} is called.  It doesn't matter what
 +definition you use for @code{YYERROR_VERBOSE}, just whether you define
 +it.  Using @samp{%define parse.error verbose} is preferred
 +(@pxref{Error Reporting, ,The Error Reporting Function @code{yyerror}}).
  @end deffn
  
  @deffn {Macro} YYFPRINTF
@@@ -12347,6 -11694,13 +12400,6 @@@ parse a single token.  @xref{Push Parse
  More user feedback will help to stabilize it.)
  @end deffn
  
 -@deffn {Macro} YYPARSE_PARAM
 -An obsolete macro for specifying the name of a parameter that
 -@code{yyparse} should accept.  The use of this macro is deprecated, and
 -is supported only for Yacc like parsers.  @xref{Pure Calling,, Calling
 -Conventions for Pure Parsers}.
 -@end deffn
 -
  @deffn {Macro} YYRECOVERING
  The expression @code{YYRECOVERING ()} yields 1 when the parser
  is recovering from a syntax error, and 0 otherwise.
diff --combined src/print.c
index f21aade5116f1c4b6d184c1b2d12c2ea0021e78e,5fdb28b580ece827d92647b94b39fe59ab029853..2eecae4c00f672f8bd0294682744f93a66909aa9
@@@ -96,7 -96,7 +96,7 @@@ print_core (FILE *out, state *s
        sp1 = sp = ritem + sitems[i];
  
        while (*sp >= 0)
 -      sp++;
 +        sp++;
  
        r = item_number_as_rule_number (*sp);
  
        previous_lhs = rules[r].lhs;
  
        for (sp = rules[r].rhs; sp < sp1; sp++)
 -      fprintf (out, " %s", symbols[*sp]->tag);
 +        fprintf (out, " %s", symbols[*sp]->tag);
        fputs (" .", out);
        for (/* Nothing */; *sp >= 0; ++sp)
 -      fprintf (out, " %s", symbols[*sp]->tag);
 +        fprintf (out, " %s", symbols[*sp]->tag);
  
        /* Display the lookahead tokens?  */
        if (report_flag & report_lookahead_tokens
            && item_number_is_rule_number (*sp1))
 -      state_rule_lookahead_tokens_print (s, &rules[r], out);
 +        state_rule_lookahead_tokens_print (s, &rules[r], out);
  
        fputc ('\n', out);
      }
@@@ -134,10 -134,10 +134,10 @@@ print_transitions (state *s, FILE *out
    /* Compute the width of the lookahead token column.  */
    for (i = 0; i < trans->num; i++)
      if (!TRANSITION_IS_DISABLED (trans, i)
 -      && TRANSITION_IS_SHIFT (trans, i) == display_transitions_p)
 +        && TRANSITION_IS_SHIFT (trans, i) == display_transitions_p)
        {
 -      symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
 -      max_length (&width, sym->tag);
 +        symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
 +        max_length (&width, sym->tag);
        }
  
    /* Nothing to report. */
    /* Report lookahead tokens and shifts.  */
    for (i = 0; i < trans->num; i++)
      if (!TRANSITION_IS_DISABLED (trans, i)
 -      && TRANSITION_IS_SHIFT (trans, i) == display_transitions_p)
 +        && TRANSITION_IS_SHIFT (trans, i) == display_transitions_p)
        {
 -      symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
 -      const char *tag = sym->tag;
 -      state *s1 = trans->states[i];
 -      int j;
 -
 -      fprintf (out, "    %s", tag);
 -      for (j = width - strlen (tag); j > 0; --j)
 -        fputc (' ', out);
 -      if (display_transitions_p)
 -        fprintf (out, _("shift, and go to state %d\n"), s1->number);
 -      else
 -        fprintf (out, _("go to state %d\n"), s1->number);
 +        symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
 +        const char *tag = sym->tag;
 +        state *s1 = trans->states[i];
 +        int j;
 +
 +        fprintf (out, "    %s", tag);
 +        for (j = width - strlen (tag); j > 0; --j)
 +          fputc (' ', out);
 +        if (display_transitions_p)
 +          fprintf (out, _("shift, and go to state %d\n"), s1->number);
 +        else
 +          fprintf (out, _("go to state %d\n"), s1->number);
        }
  }
  
@@@ -195,12 -195,12 +195,12 @@@ print_errs (FILE *out, state *s
    for (i = 0; i < errp->num; ++i)
      if (errp->symbols[i])
        {
 -      const char *tag = errp->symbols[i]->tag;
 -      int j;
 -      fprintf (out, "    %s", tag);
 -      for (j = width - strlen (tag); j > 0; --j)
 -        fputc (' ', out);
 -      fputs (_("error (nonassociative)\n"), out);
 +        const char *tag = errp->symbols[i]->tag;
 +        int j;
 +        fprintf (out, "    %s", tag);
 +        for (j = width - strlen (tag); j > 0; --j)
 +          fputc (' ', out);
 +        fputs (_("error (nonassociative)\n"), out);
        }
  }
  
  
  static void
  print_reduction (FILE *out, size_t width,
 -               const char *lookahead_token,
 -               rule *r, bool enabled)
 +                 const char *lookahead_token,
 +                 rule *r, bool enabled)
  {
    int j;
    fprintf (out, "    %s", lookahead_token);
@@@ -266,22 -266,22 +266,22 @@@ print_reductions (FILE *out, state *s
    if (reds->lookahead_tokens)
      for (i = 0; i < ntokens; i++)
        {
 -      bool count = bitset_test (no_reduce_set, i);
 -
 -      for (j = 0; j < reds->num; ++j)
 -        if (bitset_test (reds->lookahead_tokens[j], i))
 -          {
 -            if (! count)
 -              {
 -                if (reds->rules[j] != default_reduction)
 -                  max_length (&width, symbols[i]->tag);
 -                count = true;
 -              }
 -            else
 -              {
 -                max_length (&width, symbols[i]->tag);
 -              }
 -          }
 +        bool count = bitset_test (no_reduce_set, i);
 +
 +        for (j = 0; j < reds->num; ++j)
 +          if (bitset_test (reds->lookahead_tokens[j], i))
 +            {
 +              if (! count)
 +                {
 +                  if (reds->rules[j] != default_reduction)
 +                    max_length (&width, symbols[i]->tag);
 +                  count = true;
 +                }
 +              else
 +                {
 +                  max_length (&width, symbols[i]->tag);
 +                }
 +            }
        }
  
    /* Nothing to report. */
    if (reds->lookahead_tokens)
      for (i = 0; i < ntokens; i++)
        {
 -      bool defaulted = false;
 -      bool count = bitset_test (no_reduce_set, i);
 +        bool defaulted = false;
 +        bool count = bitset_test (no_reduce_set, i);
          if (count)
            default_reduction_only = false;
  
 -      for (j = 0; j < reds->num; ++j)
 -        if (bitset_test (reds->lookahead_tokens[j], i))
 -          {
 -            if (! count)
 -              {
 -                if (reds->rules[j] != default_reduction)
 +        for (j = 0; j < reds->num; ++j)
 +          if (bitset_test (reds->lookahead_tokens[j], i))
 +            {
 +              if (! count)
 +                {
 +                  if (reds->rules[j] != default_reduction)
                      {
                        default_reduction_only = false;
                        print_reduction (out, width,
                                         symbols[i]->tag,
                                         reds->rules[j], true);
                      }
 -                else
 -                  defaulted = true;
 -                count = true;
 -              }
 -            else
 -              {
 +                  else
 +                    defaulted = true;
 +                  count = true;
 +                }
 +              else
 +                {
                    default_reduction_only = false;
 -                if (defaulted)
 -                  print_reduction (out, width,
 -                                   symbols[i]->tag,
 -                                   default_reduction, true);
 -                defaulted = false;
 -                print_reduction (out, width,
 -                                 symbols[i]->tag,
 -                                 reds->rules[j], false);
 -              }
 -          }
 +                  if (defaulted)
 +                    print_reduction (out, width,
 +                                     symbols[i]->tag,
 +                                     default_reduction, true);
 +                  defaulted = false;
 +                  print_reduction (out, width,
 +                                   symbols[i]->tag,
 +                                   reds->rules[j], false);
 +                }
 +            }
        }
  
    if (default_reduction)
      {
        char *default_reductions =
 -        muscle_percent_define_get ("lr.default-reductions");
 +        muscle_percent_define_get ("lr.default-reduction");
        print_reduction (out, width, _("$default"), default_reduction, true);
 -      aver (0 == strcmp (default_reductions, "most")
 -            || (0 == strcmp (default_reductions, "consistent")
 +      aver (STREQ (default_reductions, "most")
 +            || (STREQ (default_reductions, "consistent")
                  && default_reduction_only)
              || (reds->num == 1 && reds->rules[0]->number == 0));
        free (default_reductions);
@@@ -370,7 -370,7 +370,7 @@@ static voi
  print_state (FILE *out, state *s)
  {
    fputs ("\n\n", out);
-   fprintf (out, _("state %d"), s->number);
+   fprintf (out, _("State %d"), s->number);
    fputc ('\n', out);
    print_core (out, s);
    print_actions (out, s);
  | Print information on the whole grammar.  |
  `-----------------------------------------*/
  
 -#define END_TEST(End)                         \
 -do {                                          \
 -  if (column + strlen(buffer) > (End))                \
 -    {                                         \
 -      fprintf (out, "%s\n   ", buffer);               \
 -      column = 3;                             \
 -      buffer[0] = 0;                          \
 -    }                                         \
 -} while (0)
 +#define END_TEST(End)                           \
 +  do {                                          \
 +    if (column + strlen (buffer) > (End))       \
 +      {                                         \
 +        fprintf (out, "%s\n   ", buffer);       \
 +        column = 3;                             \
 +        buffer[0] = 0;                          \
 +      }                                         \
 +  } while (0)
  
  
  static void
@@@ -410,25 -410,25 +410,25 @@@ print_grammar (FILE *out
    for (i = 0; i < max_user_token_number + 1; i++)
      if (token_translations[i] != undeftoken->number)
        {
 -      const char *tag = symbols[token_translations[i]]->tag;
 -      rule_number r;
 -      item_number *rhsp;
 -
 -      buffer[0] = 0;
 -      column = strlen (tag);
 -      fputs (tag, out);
 -      END_TEST (65);
 -      sprintf (buffer, " (%d)", i);
 -
 -      for (r = 0; r < nrules; r++)
 -        for (rhsp = rules[r].rhs; *rhsp >= 0; rhsp++)
 -          if (item_number_as_symbol_number (*rhsp) == token_translations[i])
 -            {
 -              END_TEST (65);
 -              sprintf (buffer + strlen (buffer), " %d", r);
 -              break;
 -            }
 -      fprintf (out, "%s\n", buffer);
 +        const char *tag = symbols[token_translations[i]]->tag;
 +        rule_number r;
 +        item_number *rhsp;
 +
 +        buffer[0] = 0;
 +        column = strlen (tag);
 +        fputs (tag, out);
 +        END_TEST (65);
 +        sprintf (buffer, " (%d)", i);
 +
 +        for (r = 0; r < nrules; r++)
 +          for (rhsp = rules[r].rhs; *rhsp >= 0; rhsp++)
 +            if (item_number_as_symbol_number (*rhsp) == token_translations[i])
 +              {
 +                END_TEST (65);
 +                sprintf (buffer + strlen (buffer), " %d", r);
 +                break;
 +              }
 +        fprintf (out, "%s\n", buffer);
        }
    fputs ("\n\n", out);
  
        const char *tag = symbols[i]->tag;
  
        for (r = 0; r < nrules; r++)
 -      {
 -        item_number *rhsp;
 -        if (rules[r].lhs->number == i)
 -          left_count++;
 -        for (rhsp = rules[r].rhs; *rhsp >= 0; rhsp++)
 -          if (item_number_as_symbol_number (*rhsp) == i)
 -            {
 -              right_count++;
 -              break;
 -            }
 -      }
 +        {
 +          item_number *rhsp;
 +          if (rules[r].lhs->number == i)
 +            left_count++;
 +          for (rhsp = rules[r].rhs; *rhsp >= 0; rhsp++)
 +            if (item_number_as_symbol_number (*rhsp) == i)
 +              {
 +                right_count++;
 +                break;
 +              }
 +        }
  
        buffer[0] = 0;
        fputs (tag, out);
        END_TEST (0);
  
        if (left_count > 0)
 -      {
 -        END_TEST (65);
 -        sprintf (buffer + strlen (buffer), _(" on left:"));
 -
 -        for (r = 0; r < nrules; r++)
 -          {
 -            if (rules[r].lhs->number == i)
 -              {
 -                END_TEST (65);
 -                sprintf (buffer + strlen (buffer), " %d", r);
 -              }
 -          }
 -      }
 +        {
 +          END_TEST (65);
 +          sprintf (buffer + strlen (buffer), _(" on left:"));
 +
 +          for (r = 0; r < nrules; r++)
 +            {
 +              if (rules[r].lhs->number == i)
 +                {
 +                  END_TEST (65);
 +                  sprintf (buffer + strlen (buffer), " %d", r);
 +                }
 +            }
 +        }
  
        if (right_count > 0)
 -      {
 -        if (left_count > 0)
 -          sprintf (buffer + strlen (buffer), ",");
 -        END_TEST (65);
 -        sprintf (buffer + strlen (buffer), _(" on right:"));
 -        for (r = 0; r < nrules; r++)
 -          {
 -            item_number *rhsp;
 -            for (rhsp = rules[r].rhs; *rhsp >= 0; rhsp++)
 -              if (item_number_as_symbol_number (*rhsp) == i)
 -                {
 -                  END_TEST (65);
 -                  sprintf (buffer + strlen (buffer), " %d", r);
 -                  break;
 -                }
 -          }
 -      }
 +        {
 +          if (left_count > 0)
 +            sprintf (buffer + strlen (buffer), ",");
 +          END_TEST (65);
 +          sprintf (buffer + strlen (buffer), _(" on right:"));
 +          for (r = 0; r < nrules; r++)
 +            {
 +              item_number *rhsp;
 +              for (rhsp = rules[r].rhs; *rhsp >= 0; rhsp++)
 +                if (item_number_as_symbol_number (*rhsp) == i)
 +                  {
 +                    END_TEST (65);
 +                    sprintf (buffer + strlen (buffer), " %d", r);
 +                    break;
 +                  }
 +            }
 +        }
        fprintf (out, "%s\n", buffer);
      }
  }
@@@ -507,7 -507,7 +507,7 @@@ print_results (void
  
    reduce_output (out);
    grammar_rules_partial_print (out,
 -                             _("Rules useless in parser due to conflicts"),
 +                               _("Rules useless in parser due to conflicts"),
                                   rule_useless_in_parser_p);
    conflicts_output (out);
  
diff --combined src/print_graph.c
index 918a3df8937e94686c5f9d4efb3b90a90896d538,f4742b165876ccfe9fc45cd9136b0b7456337006..31e0e382d5378450d974ae7013bdfa3a85b5c521
@@@ -57,7 -57,6 +57,7 @@@ print_lhs (struct obstack *oout, rule *
        obstack_sgrow (oout, escape (r->lhs->tag));
        obstack_1grow (oout, ':');
      }
 +  obstack_1grow (oout, ' ');
  }
  
  static void
@@@ -77,7 -76,7 +77,7 @@@ print_core (struct obstack *oout, stat
      }
  
    obstack_printf (oout, _("State %d"), s->number);
-   obstack_sgrow (oout, "\\n");
+   obstack_sgrow (oout, "\\n\\l");
    for (i = 0; i < snritems; i++)
      {
        item_number *sp;
@@@ -96,9 -95,9 +96,9 @@@
        previous_rule = &rules[r];
  
        for (sp = rules[r].rhs; sp < sp1; sp++)
 -        obstack_printf (oout, " %s", escape (symbols[*sp]->tag));
 +        obstack_printf (oout, "%s ", escape (symbols[*sp]->tag));
  
 -      obstack_sgrow (oout, " .");
 +      obstack_1grow (oout, '.');
  
        for (/* Nothing */; *sp >= 0; ++sp)
          obstack_printf (oout, " %s", escape (symbols[*sp]->tag));
@@@ -143,31 -142,30 +143,30 @@@ print_actions (state const *s, FILE *fg
    transitions const *trans = s->transitions;
    int i;
  
-   /* Display reductions. */
-   output_red (s, s->reductions, fgraph);
    if (!trans->num && !s->reductions)
      return;
  
    for (i = 0; i < trans->num; i++)
      if (!TRANSITION_IS_DISABLED (trans, i))
        {
 -      state *s1 = trans->states[i];
 -      symbol_number sym = s1->accessing_symbol;
 -
 -      /* Shifts are solid, gotos are dashed, and error is dotted.  */
 -      char const *style =
 -        (TRANSITION_IS_ERROR (trans, i) ? "dotted"
 -         : TRANSITION_IS_SHIFT (trans, i) ? "solid"
 -         : "dashed");
 -
 -      if (TRANSITION_IS_ERROR (trans, i)
 -          && strcmp (symbols[sym]->tag, "error") != 0)
 -        abort ();
 -      output_edge (s->number, s1->number,
 -                   TRANSITION_IS_ERROR (trans, i) ? NULL : symbols[sym]->tag,
 -                   style, fgraph);
 +        state *s1 = trans->states[i];
 +        symbol_number sym = s1->accessing_symbol;
 +
 +        /* Shifts are solid, gotos are dashed, and error is dotted.  */
 +        char const *style =
 +          (TRANSITION_IS_ERROR (trans, i) ? "dotted"
 +           : TRANSITION_IS_SHIFT (trans, i) ? "solid"
 +           : "dashed");
 +
 +        if (TRANSITION_IS_ERROR (trans, i)
 +            && STRNEQ (symbols[sym]->tag, "error"))
 +          abort ();
 +        output_edge (s->number, s1->number,
 +                     TRANSITION_IS_ERROR (trans, i) ? NULL : symbols[sym]->tag,
 +                     style, fgraph);
        }
+   /* Display reductions. */
+   output_red (s, s->reductions, fgraph);
  }
  
  
@@@ -184,7 -182,8 +183,7 @@@ print_state (state *s, FILE *fgraph
    /* A node's label contains its items.  */
    obstack_init (&node_obstack);
    print_core (&node_obstack, s);
 -  obstack_1grow (&node_obstack, '\0');
 -  output_node (s->number, obstack_finish (&node_obstack), fgraph);
 +  output_node (s->number, obstack_finish0 (&node_obstack), fgraph);
    obstack_free (&node_obstack, 0);
  
    /* Output the edges.  */
diff --combined tests/conflicts.at
index 37c54050ca3f508e4c05c6816e5cf6fca3967cb5,a13d754628822f0cc9d066e04aaacd64e1eb0967..8b04449c732998197477f2fc2ebace711c6a66ba
@@@ -1,6 -1,7 +1,6 @@@
  # Exercising Bison on conflicts.                         -*- Autotest -*-
  
 -# Copyright (C) 2002-2005, 2007, 2009-2012 Free Software Foundation,
 -# Inc.
 +# Copyright (C) 2002-2005, 2007-2012 Free Software Foundation, Inc.
  
  # This program is free software: you can redistribute it and/or modify
  # it under the terms of the GNU General Public License as published by
@@@ -37,7 -38,7 +37,7 @@@ e: 'e' | /* Nothing. */
  ]])
  
  AT_BISON_CHECK([-o input.c input.y], 0, [],
 -[[input.y:4.9: warning: rule useless in parser due to conflicts: e: /* empty */
 +[[input.y:4.9: warning: rule useless in parser due to conflicts: e: /* empty */ [-Wother]
  ]])
  
  AT_CLEANUP
@@@ -117,10 -118,10 +117,10 @@@ AT_NONASSOC_AND_EOF_CHECK([], [[incorre
  
  # We must disable default reductions in inconsistent states in order to
  # have an explicit list of all expected tokens.
 -AT_NONASSOC_AND_EOF_CHECK([[-Dlr.default-reductions=consistent]],
 +AT_NONASSOC_AND_EOF_CHECK([[-Dlr.default-reduction=consistent]],
                            [[correct]])
  
 -# lr.default-reductions=consistent happens to work for this test case.
 +# lr.default-reduction=consistent happens to work for this test case.
  # However, for other grammars, lookahead sets can be merged for
  # different left contexts, so it is still possible to have an incorrect
  # expected list.  Canonical LR is almost a general solution (that is, it
@@@ -141,11 -142,11 +141,11 @@@ AT_CLEANU
  
  
  
 -## -------------------------------------- ##
 -## %error-verbose and consistent errors.  ##
 -## -------------------------------------- ##
 +## ------------------------------------------- ##
 +## parse.error=verbose and consistent errors.  ##
 +## ------------------------------------------- ##
  
 -AT_SETUP([[%error-verbose and consistent errors]])
 +AT_SETUP([[parse.error=verbose and consistent errors]])
  
  m4_pushdef([AT_CONSISTENT_ERRORS_CHECK], [
  
@@@ -163,6 -164,7 +163,6 @@@ AT_SKEL_JAVA_IF([AT_DATA], [AT_DATA_GRA
  }]], [[
  
  %code {]AT_SKEL_CC_IF([[
 -  #include <cassert>
    #include <string>]], [[
    #include <assert.h>
    #include <stdio.h>
  
  ]$1[
  
 -%error-verbose
 +%define parse.error verbose
  
  %%
  
@@@ -310,12 -312,12 +310,12 @@@ AT_CONSISTENT_ERRORS_CHECK([[%define lr
  
  # Even canonical LR doesn't foresee the error for 'a'!
  AT_CONSISTENT_ERRORS_CHECK([[%define lr.type ielr
 -                             %define lr.default-reductions consistent]],
 +                             %define lr.default-reduction consistent]],
                             [AT_PREVIOUS_STATE_GRAMMAR],
                             [AT_PREVIOUS_STATE_INPUT],
                             [[$end]], [[ab]])
  AT_CONSISTENT_ERRORS_CHECK([[%define lr.type ielr
 -                             %define lr.default-reductions accepting]],
 +                             %define lr.default-reduction accepting]],
                             [AT_PREVIOUS_STATE_GRAMMAR],
                             [AT_PREVIOUS_STATE_INPUT],
                             [[$end]], [[ab]])
@@@ -370,7 -372,7 +370,7 @@@ error-reduce
  ;
  
  consistent-reduction: /*empty*/ {
 -  assert (yychar == ]AT_SKEL_CC_IF([[yyempty_]], [[YYEMPTY]])[);
 +  assert (yychar == YYEMPTY);
    yylval = 0;
    yychar = 'b';
  } ;
@@@ -394,15 -396,19 +394,15 @@@ AT_CONSISTENT_ERRORS_CHECK([[%glr-parse
                             [AT_USER_ACTION_GRAMMAR],
                             [AT_USER_ACTION_INPUT],
                             [['b']], [[none]])
 -AT_CONSISTENT_ERRORS_CHECK([[%language "c++"]],
 -                           [AT_USER_ACTION_GRAMMAR],
 -                           [AT_USER_ACTION_INPUT],
 -                           [['b']], [[none]])
 -# No Java test because yychar cannot be manipulated by users.
 +# No C++ or Java test because yychar cannot be manipulated by users.
  
 -AT_CONSISTENT_ERRORS_CHECK([[%define lr.default-reductions consistent]],
 +AT_CONSISTENT_ERRORS_CHECK([[%define lr.default-reduction consistent]],
                             [AT_USER_ACTION_GRAMMAR],
                             [AT_USER_ACTION_INPUT],
                             [['b']], [[none]])
  
  # Canonical LR doesn't foresee the error for 'a'!
 -AT_CONSISTENT_ERRORS_CHECK([[%define lr.default-reductions accepting]],
 +AT_CONSISTENT_ERRORS_CHECK([[%define lr.default-reduction accepting]],
                             [AT_USER_ACTION_GRAMMAR],
                             [AT_USER_ACTION_INPUT],
                             [[$end]], [[a]])
@@@ -416,7 -422,7 +416,7 @@@ AT_CONSISTENT_ERRORS_CHECK([[%define pa
                             [AT_USER_ACTION_INPUT],
                             [['b']], [[none]])
  AT_CONSISTENT_ERRORS_CHECK([[%define parse.lac full
 -                             %define lr.default-reductions accepting]],
 +                             %define lr.default-reduction accepting]],
                             [AT_USER_ACTION_GRAMMAR],
                             [AT_USER_ACTION_INPUT],
                             [[$end]], [[none]])
@@@ -498,7 -504,7 +498,7 @@@ AT_BISON_OPTION_POPDEF
  # Show canonical LR's failure.
  AT_BISON_CHECK([[-Dlr.type=canonical-lr -o input.c input.y]],
                 [[0]], [[]],
 -[[input.y: conflicts: 2 shift/reduce
 +[[input.y: warning: 2 shift/reduce conflicts [-Wconflicts-sr]
  ]])
  AT_COMPILE([[input]])
  AT_PARSER_CHECK([[./input]], [[1]], [[]],
  # It's corrected by LAC.
  AT_BISON_CHECK([[-Dlr.type=canonical-lr -Dparse.lac=full \
                   -o input.c input.y]], [[0]], [[]],
 -[[input.y: conflicts: 2 shift/reduce
 +[[input.y: warning: 2 shift/reduce conflicts [-Wconflicts-sr]
  ]])
  AT_COMPILE([[input]])
  AT_PARSER_CHECK([[./input]], [[1]], [[]],
  # IELR is sufficient when LAC is used.
  AT_BISON_CHECK([[-Dlr.type=ielr -Dparse.lac=full -o input.c input.y]],
                 [[0]], [[]],
 -[[input.y: conflicts: 2 shift/reduce
 +[[input.y: warning: 2 shift/reduce conflicts [-Wconflicts-sr]
  ]])
  AT_COMPILE([[input]])
  AT_PARSER_CHECK([[./input]], [[1]], [[]],
@@@ -542,8 -548,8 +542,8 @@@ exp: exp OP exp | NUM
  ]])
  
  AT_BISON_CHECK([-o input.c --report=all input.y], 0, [],
 -[input.y: conflicts: 1 shift/reduce
 -])
 +[[input.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
 +]])
  
  # Check the contents of the report.
  AT_CHECK([cat input.output], [],
@@@ -574,7 -580,7 +574,7 @@@ exp (6
      on left: 1 2, on right: 0 1
  
  
state 0
State 0
  
      0 $accept: . exp $end
      1 exp: . exp OP exp
      exp  go to state 2
  
  
state 1
State 1
  
      2 exp: NUM .
  
      $default  reduce using rule 2 (exp)
  
  
state 2
State 2
  
      0 $accept: exp . $end
      1 exp: exp . OP exp
      OP    shift, and go to state 4
  
  
state 3
State 3
  
      0 $accept: exp $end .
  
      $default  accept
  
  
state 4
State 4
  
      1 exp: . exp OP exp
      1    | exp OP . exp
      exp  go to state 5
  
  
state 5
State 5
  
      1 exp: exp . OP exp
      1    | exp OP exp .  [$end, OP]
@@@ -677,7 -683,7 +677,7 @@@ exp (6
      on left: 1 2, on right: 0 1
  
  
state 0
State 0
  
      0 $accept: . exp $end
      1 exp: . exp OP exp
      exp  go to state 2
  
  
state 1
State 1
  
      2 exp: NUM .
  
      $default  reduce using rule 2 (exp)
  
  
state 2
State 2
  
      0 $accept: exp . $end
      1 exp: exp . OP exp
      OP    shift, and go to state 4
  
  
state 3
State 3
  
      0 $accept: exp $end .
  
      $default  accept
  
  
state 4
State 4
  
      1 exp: . exp OP exp
      1    | exp OP . exp
      exp  go to state 5
  
  
state 5
State 5
  
      1 exp: exp . OP exp
      1    | exp OP exp .  [$end, OP]
  AT_CLEANUP
  
  
 +## ---------------------- ##
 +## %precedence suffices.  ##
 +## ---------------------- ##
 +
 +AT_SETUP([%precedence suffices])
 +
 +AT_DATA([input.y],
 +[[%precedence "then"
 +%precedence "else"
 +%%
 +stmt:
 +  "if" cond "then" stmt
 +| "if" cond "then" stmt "else" stmt
 +| "stmt"
 +;
 +
 +cond:
 +  "exp"
 +;
 +]])
 +
 +AT_BISON_CHECK([-o input.c input.y])
 +
 +AT_CLEANUP
 +
 +
 +## ------------------------------ ##
 +## %precedence does not suffice.  ##
 +## ------------------------------ ##
 +
 +AT_SETUP([%precedence does not suffice])
 +
 +AT_DATA([input.y],
 +[[%precedence "then"
 +%precedence "else"
 +%%
 +stmt:
 +  "if" cond "then" stmt
 +| "if" cond "then" stmt "else" stmt
 +| "stmt"
 +;
 +
 +cond:
 +  "exp"
 +| cond "then" cond
 +;
 +]])
 +
 +AT_BISON_CHECK([-o input.c input.y], 0, [],
 +[[input.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
 +input.y:12.3-18: warning: rule useless in parser due to conflicts: cond: cond "then" cond [-Wother]
 +]])
 +
 +AT_CLEANUP
 +
 +
  ## -------------------------------- ##
  ## Defaulted Conflicted Reduction.  ##
  ## -------------------------------- ##
@@@ -828,8 -778,8 +828,8 @@@ id : '0'
  ]])
  
  AT_BISON_CHECK([-o input.c --report=all input.y], 0, [],
 -[[input.y: conflicts: 1 reduce/reduce
 -input.y:4.6-8: warning: rule useless in parser due to conflicts: id: '0'
 +[[input.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +input.y:4.6-8: warning: rule useless in parser due to conflicts: id: '0' [-Wother]
  ]])
  
  # Check the contents of the report.
@@@ -873,7 -823,7 +873,7 @@@ id (7
      on left: 4, on right: 2
  
  
state 0
State 0
  
      0 $accept: . exp $end
      1 exp: . num
      id   go to state 4
  
  
state 1
State 1
  
      3 num: '0' .  [$end]
      4 id: '0' .  [$end]
      $default  reduce using rule 3 (num)
  
  
state 2
State 2
  
      0 $accept: exp . $end
  
      $end  shift, and go to state 5
  
  
state 3
State 3
  
      1 exp: num .
  
      $default  reduce using rule 1 (exp)
  
  
state 4
State 4
  
      2 exp: id .
  
      $default  reduce using rule 2 (exp)
  
  
state 5
State 5
  
      0 $accept: exp $end .
  
@@@ -945,8 -895,9 +945,8 @@@ exp: exp OP exp | NUM
  ]])
  
  AT_BISON_CHECK([-o input.c input.y], 1, [],
 -[input.y: conflicts: 1 shift/reduce
 -input.y: error: expected 0 shift/reduce conflicts
 -])
 +[[input.y: error: shift/reduce conflicts: 1 found, 0 expected
 +]])
  AT_CLEANUP
  
  
@@@ -981,8 -932,9 +981,8 @@@ exp: exp OP exp | NUM
  ]])
  
  AT_BISON_CHECK([-o input.c input.y], 1, [],
 -[input.y: conflicts: 1 shift/reduce
 -input.y: error: expected 2 shift/reduce conflicts
 -])
 +[[input.y: error: shift/reduce conflicts: 1 found, 2 expected
 +]])
  AT_CLEANUP
  
  
@@@ -1000,8 -952,9 +1000,8 @@@ a: 'a'
  ]])
  
  AT_BISON_CHECK([-o input.c input.y], 1, [],
 -[input.y: conflicts: 1 reduce/reduce
 -input.y: error: expected 0 reduce/reduce conflicts
 -])
 +[[input.y: error: reduce/reduce conflicts: 1 found, 0 expected
 +]])
  AT_CLEANUP
  
  
@@@ -1043,7 -996,7 +1043,7 @@@ e:   e '+' 
  ]])
  
  AT_BISON_CHECK([-o input.c input.y], 0, [],
 -[[input.y: conflicts: 4 shift/reduce
 +[[input.y: warning: 4 shift/reduce conflicts [-Wconflicts-sr]
  ]])
  AT_CLEANUP
  
@@@ -1145,15 -1098,14 +1145,15 @@@ reported_conflicts
  ]])
  
  AT_BISON_CHECK([[--report=all input.y]], 0, [],
 -[[input.y: conflicts: 1 shift/reduce, 1 reduce/reduce
 -input.y:12.5-20: warning: rule useless in parser due to conflicts: resolved_conflict: 'a' unreachable1
 -input.y:20.5-20: warning: rule useless in parser due to conflicts: unreachable1: 'a' unreachable2
 -input.y:21.4: warning: rule useless in parser due to conflicts: unreachable1: /* empty */
 -input.y:25.13: warning: rule useless in parser due to conflicts: unreachable2: /* empty */
 -input.y:25.16: warning: rule useless in parser due to conflicts: unreachable2: /* empty */
 -input.y:31.5-7: warning: rule useless in parser due to conflicts: reported_conflicts: 'a'
 -input.y:32.4: warning: rule useless in parser due to conflicts: reported_conflicts: /* empty */
 +[[input.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
 +input.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +input.y:12.5-20: warning: rule useless in parser due to conflicts: resolved_conflict: 'a' unreachable1 [-Wother]
 +input.y:20.5-20: warning: rule useless in parser due to conflicts: unreachable1: 'a' unreachable2 [-Wother]
 +input.y:21.4: warning: rule useless in parser due to conflicts: unreachable1: /* empty */ [-Wother]
 +input.y:25.13: warning: rule useless in parser due to conflicts: unreachable2: /* empty */ [-Wother]
 +input.y:25.16: warning: rule useless in parser due to conflicts: unreachable2: /* empty */ [-Wother]
 +input.y:31.5-7: warning: rule useless in parser due to conflicts: reported_conflicts: 'a' [-Wother]
 +input.y:32.4: warning: rule useless in parser due to conflicts: reported_conflicts: /* empty */ [-Wother]
  ]])
  
  AT_CHECK([[cat input.output]], 0,
@@@ -1218,7 -1170,7 +1218,7 @@@ reported_conflicts (9
      on left: 8 9 10, on right: 1
  
  
state 0
State 0
  
      0 $accept: . start $end
      1 start: . resolved_conflict 'a' reported_conflicts 'a'
      Conflict between rule 3 and token 'a' resolved as reduce (%left 'a').
  
  
state 1
State 1
  
      0 $accept: start . $end
  
      $end  shift, and go to state 3
  
  
state 2
State 2
  
      1 start: resolved_conflict . 'a' reported_conflicts 'a'
  
      'a'  shift, and go to state 4
  
  
state 3
State 3
  
      0 $accept: start $end .
  
      $default  accept
  
  
state 4
State 4
  
      1 start: resolved_conflict 'a' . reported_conflicts 'a'
      8 reported_conflicts: . 'a'
      reported_conflicts  go to state 6
  
  
state 5
State 5
  
      8 reported_conflicts: 'a' .  ['a']
      9                   | 'a' .  ['a']
      $default  reduce using rule 8 (reported_conflicts)
  
  
state 6
State 6
  
      1 start: resolved_conflict 'a' reported_conflicts . 'a'
  
      'a'  shift, and go to state 7
  
  
state 7
State 7
  
      1 start: resolved_conflict 'a' reported_conflicts 'a' .
  
  ]])
  
  AT_DATA([[input-keep.y]],
 -[[%define lr.keep-unreachable-states
 +[[%define lr.keep-unreachable-state
  ]])
  AT_CHECK([[cat input.y >> input-keep.y]])
  
  AT_BISON_CHECK([[input-keep.y]], 0, [],
 -[[input-keep.y: conflicts: 2 shift/reduce, 2 reduce/reduce
 -input-keep.y:22.4: warning: rule useless in parser due to conflicts: unreachable1: /* empty */
 -input-keep.y:26.16: warning: rule useless in parser due to conflicts: unreachable2: /* empty */
 -input-keep.y:32.5-7: warning: rule useless in parser due to conflicts: reported_conflicts: 'a'
 -input-keep.y:33.4: warning: rule useless in parser due to conflicts: reported_conflicts: /* empty */
 +[[input-keep.y: warning: 2 shift/reduce conflicts [-Wconflicts-sr]
 +input-keep.y: warning: 2 reduce/reduce conflicts [-Wconflicts-rr]
 +input-keep.y:22.4: warning: rule useless in parser due to conflicts: unreachable1: /* empty */ [-Wother]
 +input-keep.y:26.16: warning: rule useless in parser due to conflicts: unreachable2: /* empty */ [-Wother]
 +input-keep.y:32.5-7: warning: rule useless in parser due to conflicts: reported_conflicts: 'a' [-Wother]
 +input-keep.y:33.4: warning: rule useless in parser due to conflicts: reported_conflicts: /* empty */ [-Wother]
  ]])
  
  AT_CLEANUP
@@@ -1340,8 -1291,8 +1340,8 @@@ empty_c2: %prec 'c' 
  empty_c3: %prec 'd' ;
  ]])
  AT_BISON_CHECK([[--report=all -o input.c input.y]], 0, [], [ignore])
- AT_CHECK([[cat input.output | sed -n '/^state 0$/,/^state 1$/p']], 0,
- [[state 0
+ AT_CHECK([[cat input.output | sed -n '/^State 0$/,/^State 1$/p']], 0,
+ [[State 0
  
      0 $accept: . start $end
      1 start: . 'a'
      Conflict between rule 13 and token 'c' resolved as reduce ('c' < 'd').
  
  
state 1
State 1
  ]])
  
  AT_CLEANUP
@@@ -1416,8 -1367,8 +1416,8 @@@ empty_c3: %prec 'c' 
  ]])
  
  AT_BISON_CHECK([[--report=all -o input.c input.y]], 0, [], [ignore])
- AT_CHECK([[cat input.output | sed -n '/^state 0$/,/^state 1$/p']], 0,
- [[state 0
+ AT_CHECK([[cat input.output | sed -n '/^State 0$/,/^State 1$/p']], 0,
+ [[State 0
  
      0 $accept: . start $end
      1 start: . 'a'
      Conflict between rule 11 and token 'c' resolved as an error (%nonassoc 'c').
  
  
state 1
State 1
  ]])
  AT_CLEANUP
  
  
 -## --------------------------------- ##
 -## -W versus %expect and %expect-rr  ##
 -## --------------------------------- ##
 +## -------------------- ##
 +## %expect-rr non GLR.  ##
 +## -------------------- ##
 +
 +AT_SETUP([[%expect-rr non GLR]])
 +
 +AT_DATA([[1.y]],
 +[[%expect-rr 0
 +%%
 +exp: 'a'
 +]])
 +
 +AT_BISON_CHECK([[1.y]], [[0]], [],
 +[[1.y: warning: %expect-rr applies only to GLR parsers [-Wother]
 +]])
 +
 +AT_DATA([[2.y]],
 +[[%expect-rr 1
 +%%
 +exp: 'a' | 'a';
 +]])
 +
 +AT_BISON_CHECK([[2.y]], [[0]], [],
 +[[2.y: warning: %expect-rr applies only to GLR parsers [-Wother]
 +2.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +2.y:3.12-14: warning: rule useless in parser due to conflicts: exp: 'a' [-Wother]
 +]])
 +
 +AT_CLEANUP
 +
 +
 +## ---------------------------------- ##
 +## -W versus %expect and %expect-rr.  ##
 +## ---------------------------------- ##
  
  AT_SETUP([[-W versus %expect and %expect-rr]])
  
@@@ -1517,27 -1437,17 +1517,27 @@@ B: 
  ]])
  
  AT_BISON_CHECK([[sr-rr.y]], [[0]], [[]],
 -[[sr-rr.y: conflicts: 1 shift/reduce, 1 reduce/reduce
 +[[sr-rr.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
 +sr-rr.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
  ]])
  AT_BISON_CHECK([[-Wno-conflicts-sr sr-rr.y]], [[0]], [[]],
 -[[sr-rr.y: conflicts: 1 reduce/reduce
 +[[sr-rr.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
  ]])
  AT_BISON_CHECK([[-Wno-conflicts-rr sr-rr.y]], [[0]], [[]],
 -[[sr-rr.y: conflicts: 1 shift/reduce
 +[[sr-rr.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
  ]])
  
 -[for gram in sr-rr sr rr; do
 +[
 +# This is piece of code is rather complex for a simple task: try every
 +# combinaison of (0 or 1 real SR) x (0 or 1 real RR) x (don't %expect
 +# or %expect 0, 1, or 2 SR) x (don't %expect-rr or %expect-rr 0, 1, or 2
 +# RR).
 +
 +# Number and types of genuine conflicts in the grammar.
 +for gram in sr-rr sr rr; do
 +  # Number of expected s/r conflicts.
    for sr_exp_i in '' 0 1 2; do
 +    # Number of expected r/r conflicts.
      for rr_exp_i in '' 0 1 2; do
        test -z "$sr_exp_i" && test -z "$rr_exp_i" && continue
  
        echo "$directives" > $file
        cat $gram.y >> $file
  
 -      # Count actual conflicts.
 -      conflicts=
 -      sr_count=0
 -      rr_count=0
 -      if test $gram = sr || test $gram = sr-rr; then
 -        conflicts="1 shift/reduce"
 -        sr_count=1
 -      fi
 -      if test $gram = rr || test $gram = sr-rr; then
 -        if test -n "$conflicts"; then
 -          conflicts="$conflicts, "
 -        fi
 -        conflicts="${conflicts}1 reduce/reduce"
 -        rr_count=1
 -      fi
 +      # Number of found conflicts.
 +      case $gram in
 +        (sr)    sr_count=1; rr_count=0;;
 +        (rr)    sr_count=0; rr_count=1;;
 +        (sr-rr) sr_count=1; rr_count=1;;
 +      esac
 +
 +      # Update number of expected conflicts: if %expect is given then
 +      # %expect-rr defaults to 0, and vice-versa.  Leave empty if
 +      # nothing expected.
 +      case $sr_exp_i:$rr_exp_i in
 +        ?:) rr_exp_i=0;;
 +        :?) sr_exp_i=0;;
 +      esac
  
        # Run tests.
        if test $sr_count -eq $sr_exp && test $rr_count -eq $rr_exp; then
          ]AT_BISON_CHECK([[-Wnone $file]])[
          ]AT_BISON_CHECK([[-Werror $file]])[
        else
 -        echo "$file: conflicts: $conflicts" > experr
 -        if test $sr_count -ne $sr_exp; then
 -          if test $sr_exp -ne 1; then s=s; else s= ; fi
 -          echo "$file: error: expected $sr_exp shift/reduce conflict$s" >> experr
 -        fi
 -        if test $rr_count -ne $rr_exp; then
 -          if test $rr_exp -ne 1; then s=s; else s= ; fi
 -          echo "$file: error: expected $rr_exp reduce/reduce conflict$s" >> experr
 -        fi
 +        {
 +          if test -z "$sr_exp_i" && test "$sr_count" -ne 0; then
 +            echo "warning: $sr_count shift/reduce conflicts"
 +          elif test "$sr_exp_i" -ne "$sr_count"; then
 +            echo "error: shift/reduce conflicts: $sr_count found, $sr_exp_i expected"
 +          fi
 +          if test -z "$rr_exp_i" && test "$rr_count" -ne 0; then
 +            echo "warning: $rr_count reduce/reduce conflicts"
 +          elif test "$rr_exp_i" -ne "$rr_count"; then
 +            echo "error: reduce/reduce conflicts: $rr_count found, $rr_exp_i expected"
 +          fi
 +        } | sed -e "s/^/$file: /" > experr
          ]AT_BISON_CHECK([[-Wnone $file]], [[1]], [[]], [[experr]])[
          ]AT_BISON_CHECK([[-Werror $file]], [[1]], [[]], [[experr]])[
        fi
diff --combined tests/existing.at
index 20dbde82a1a788ac91e89e3880afa6ab9698d105,1b6fa4d18fa213dcae46f826e05436f8da525ae4..9d30479e8971d7221f0c26cc7255e0f59eb1f10a
@@@ -115,281 -115,281 +115,281 @@@ AT_TEST_EXISTING_GRAMMAR([[GNU AWK 3.1.
  ]],
  [[
  start
 -      : opt_nls program opt_nls
 -      ;
 +        : opt_nls program opt_nls
 +        ;
  
  program
 -      : rule
 -      | program rule
 -      | error
 -      | program error
 -      | /* empty */
 -      ;
 +        : rule
 +        | program rule
 +        | error
 +        | program error
 +        | /* empty */
 +        ;
  
  rule
 -      : LEX_BEGIN {} action
 -      | LEX_END {}   action
 -      | LEX_BEGIN statement_term
 -      | LEX_END statement_term
 -      | pattern action
 -      | action
 -      | pattern statement_term
 -      | function_prologue function_body
 -      ;
 +        : LEX_BEGIN {} action
 +        | LEX_END {}   action
 +        | LEX_BEGIN statement_term
 +        | LEX_END statement_term
 +        | pattern action
 +        | action
 +        | pattern statement_term
 +        | function_prologue function_body
 +        ;
  
  func_name
 -      : NAME
 -      | FUNC_CALL
 -      | lex_builtin
 -      ;
 +        : NAME
 +        | FUNC_CALL
 +        | lex_builtin
 +        ;
  
  lex_builtin
 -      : LEX_BUILTIN
 -      | LEX_LENGTH
 -      ;
 +        : LEX_BUILTIN
 +        | LEX_LENGTH
 +        ;
  
  function_prologue
 -      : LEX_FUNCTION {} func_name '(' opt_param_list r_paren opt_nls
 -      ;
 +        : LEX_FUNCTION {} func_name '(' opt_param_list r_paren opt_nls
 +        ;
  
  function_body
 -      : l_brace statements r_brace opt_semi opt_nls
 -      | l_brace r_brace opt_semi opt_nls
 -      ;
 +        : l_brace statements r_brace opt_semi opt_nls
 +        | l_brace r_brace opt_semi opt_nls
 +        ;
  
  pattern
 -      : exp
 -      | exp ',' exp
 -      ;
 +        : exp
 +        | exp ',' exp
 +        ;
  
  regexp
 -      /*
 -       * In this rule, want_regexp tells yylex that the next thing
 -       * is a regexp so it should read up to the closing slash.
 -       */
 -      : '/' {} REGEXP '/'
 -      ;
 +        /*
 +         * In this rule, want_regexp tells yylex that the next thing
 +         * is a regexp so it should read up to the closing slash.
 +         */
 +        : '/' {} REGEXP '/'
 +        ;
  
  action
 -      : l_brace statements r_brace opt_semi opt_nls
 -      | l_brace r_brace opt_semi opt_nls
 -      ;
 +        : l_brace statements r_brace opt_semi opt_nls
 +        | l_brace r_brace opt_semi opt_nls
 +        ;
  
  statements
 -      : statement
 -      | statements statement
 -      | error
 -      | statements error
 -      ;
 +        : statement
 +        | statements statement
 +        | error
 +        | statements error
 +        ;
  
  statement_term
 -      : nls
 -      | semi opt_nls
 -      ;
 +        : nls
 +        | semi opt_nls
 +        ;
  
  statement
 -      : semi opt_nls
 -      | l_brace r_brace
 -      | l_brace statements r_brace
 -      | if_statement
 -      | LEX_WHILE '(' exp r_paren opt_nls statement
 -      | LEX_DO opt_nls statement LEX_WHILE '(' exp r_paren opt_nls
 -      | LEX_FOR '(' NAME LEX_IN NAME r_paren opt_nls statement
 -      | LEX_FOR '(' opt_exp semi opt_nls exp semi opt_nls opt_exp r_paren opt_nls statement
 -      | LEX_FOR '(' opt_exp semi opt_nls semi opt_nls opt_exp r_paren opt_nls statement
 -      | LEX_BREAK statement_term
 -      | LEX_CONTINUE statement_term
 -      | print '(' expression_list r_paren output_redir statement_term
 -      | print opt_rexpression_list output_redir statement_term
 -      | LEX_NEXT statement_term
 -      | LEX_NEXTFILE statement_term
 -      | LEX_EXIT opt_exp statement_term
 -      | LEX_RETURN {} opt_exp statement_term
 -      | LEX_DELETE NAME '[' expression_list ']' statement_term
 -      | LEX_DELETE NAME  statement_term
 -      | exp statement_term
 -      ;
 +        : semi opt_nls
 +        | l_brace r_brace
 +        | l_brace statements r_brace
 +        | if_statement
 +        | LEX_WHILE '(' exp r_paren opt_nls statement
 +        | LEX_DO opt_nls statement LEX_WHILE '(' exp r_paren opt_nls
 +        | LEX_FOR '(' NAME LEX_IN NAME r_paren opt_nls statement
 +        | LEX_FOR '(' opt_exp semi opt_nls exp semi opt_nls opt_exp r_paren opt_nls statement
 +        | LEX_FOR '(' opt_exp semi opt_nls semi opt_nls opt_exp r_paren opt_nls statement
 +        | LEX_BREAK statement_term
 +        | LEX_CONTINUE statement_term
 +        | print '(' expression_list r_paren output_redir statement_term
 +        | print opt_rexpression_list output_redir statement_term
 +        | LEX_NEXT statement_term
 +        | LEX_NEXTFILE statement_term
 +        | LEX_EXIT opt_exp statement_term
 +        | LEX_RETURN {} opt_exp statement_term
 +        | LEX_DELETE NAME '[' expression_list ']' statement_term
 +        | LEX_DELETE NAME  statement_term
 +        | exp statement_term
 +        ;
  
  print
 -      : LEX_PRINT
 -      | LEX_PRINTF
 -      ;
 +        : LEX_PRINT
 +        | LEX_PRINTF
 +        ;
  
  if_statement
 -      : LEX_IF '(' exp r_paren opt_nls statement
 -      | LEX_IF '(' exp r_paren opt_nls statement
 -           LEX_ELSE opt_nls statement
 -      ;
 +        : LEX_IF '(' exp r_paren opt_nls statement
 +        | LEX_IF '(' exp r_paren opt_nls statement
 +             LEX_ELSE opt_nls statement
 +        ;
  
  nls
 -      : NEWLINE
 -      | nls NEWLINE
 -      ;
 +        : NEWLINE
 +        | nls NEWLINE
 +        ;
  
  opt_nls
 -      : /* empty */
 -      | nls
 -      ;
 +        : /* empty */
 +        | nls
 +        ;
  
  input_redir
 -      : /* empty */
 -      | '<' simp_exp
 -      ;
 +        : /* empty */
 +        | '<' simp_exp
 +        ;
  
  output_redir
 -      : /* empty */
 -      | '>' exp
 -      | APPEND_OP exp
 -      | '|' exp
 -      | TWOWAYIO exp
 -      ;
 +        : /* empty */
 +        | '>' exp
 +        | APPEND_OP exp
 +        | '|' exp
 +        | TWOWAYIO exp
 +        ;
  
  opt_param_list
 -      : /* empty */
 -      | param_list
 -      ;
 +        : /* empty */
 +        | param_list
 +        ;
  
  param_list
 -      : NAME
 -      | param_list comma NAME
 -      | error
 -      | param_list error
 -      | param_list comma error
 -      ;
 +        : NAME
 +        | param_list comma NAME
 +        | error
 +        | param_list error
 +        | param_list comma error
 +        ;
  
  /* optional expression, as in for loop */
  opt_exp
 -      : /* empty */
 -      | exp
 -      ;
 +        : /* empty */
 +        | exp
 +        ;
  
  opt_rexpression_list
 -      : /* empty */
 -      | rexpression_list
 -      ;
 +        : /* empty */
 +        | rexpression_list
 +        ;
  
  rexpression_list
 -      : rexp
 -      | rexpression_list comma rexp
 -      | error
 -      | rexpression_list error
 -      | rexpression_list error rexp
 -      | rexpression_list comma error
 -      ;
 +        : rexp
 +        | rexpression_list comma rexp
 +        | error
 +        | rexpression_list error
 +        | rexpression_list error rexp
 +        | rexpression_list comma error
 +        ;
  
  opt_expression_list
 -      : /* empty */
 -      | expression_list
 -      ;
 +        : /* empty */
 +        | expression_list
 +        ;
  
  expression_list
 -      : exp
 -      | expression_list comma exp
 -      | error
 -      | expression_list error
 -      | expression_list error exp
 -      | expression_list comma error
 -      ;
 +        : exp
 +        | expression_list comma exp
 +        | error
 +        | expression_list error
 +        | expression_list error exp
 +        | expression_list comma error
 +        ;
  
  /* Expressions, not including the comma operator.  */
 -exp   : variable ASSIGNOP {} exp
 -      | '(' expression_list r_paren LEX_IN NAME
 -      | exp '|' LEX_GETLINE opt_variable
 -      | exp TWOWAYIO LEX_GETLINE opt_variable
 -      | LEX_GETLINE opt_variable input_redir
 -      | exp LEX_AND exp
 -      | exp LEX_OR exp
 -      | exp MATCHOP exp
 -      | regexp
 -      | '!' regexp %prec UNARY
 -      | exp LEX_IN NAME
 -      | exp RELOP exp
 -      | exp '<' exp
 -      | exp '>' exp
 -      | exp '?' exp ':' exp
 -      | simp_exp
 -      | exp simp_exp %prec CONCAT_OP
 -      ;
 +exp     : variable ASSIGNOP {} exp
 +        | '(' expression_list r_paren LEX_IN NAME
 +        | exp '|' LEX_GETLINE opt_variable
 +        | exp TWOWAYIO LEX_GETLINE opt_variable
 +        | LEX_GETLINE opt_variable input_redir
 +        | exp LEX_AND exp
 +        | exp LEX_OR exp
 +        | exp MATCHOP exp
 +        | regexp
 +        | '!' regexp %prec UNARY
 +        | exp LEX_IN NAME
 +        | exp RELOP exp
 +        | exp '<' exp
 +        | exp '>' exp
 +        | exp '?' exp ':' exp
 +        | simp_exp
 +        | exp simp_exp %prec CONCAT_OP
 +        ;
  
  rexp
 -      : variable ASSIGNOP {} rexp
 -      | rexp LEX_AND rexp
 -      | rexp LEX_OR rexp
 -      | LEX_GETLINE opt_variable input_redir
 -      | regexp
 -      | '!' regexp %prec UNARY
 -      | rexp MATCHOP rexp
 -      | rexp LEX_IN NAME
 -      | rexp RELOP rexp
 -      | rexp '?' rexp ':' rexp
 -      | simp_exp
 -      | rexp simp_exp %prec CONCAT_OP
 -      ;
 +        : variable ASSIGNOP {} rexp
 +        | rexp LEX_AND rexp
 +        | rexp LEX_OR rexp
 +        | LEX_GETLINE opt_variable input_redir
 +        | regexp
 +        | '!' regexp %prec UNARY
 +        | rexp MATCHOP rexp
 +        | rexp LEX_IN NAME
 +        | rexp RELOP rexp
 +        | rexp '?' rexp ':' rexp
 +        | simp_exp
 +        | rexp simp_exp %prec CONCAT_OP
 +        ;
  
  simp_exp
 -      : non_post_simp_exp
 -      /* Binary operators in order of decreasing precedence.  */
 -      | simp_exp '^' simp_exp
 -      | simp_exp '*' simp_exp
 -      | simp_exp '/' simp_exp
 -      | simp_exp '%' simp_exp
 -      | simp_exp '+' simp_exp
 -      | simp_exp '-' simp_exp
 -      | variable INCREMENT
 -      | variable DECREMENT
 -      ;
 +        : non_post_simp_exp
 +        /* Binary operators in order of decreasing precedence.  */
 +        | simp_exp '^' simp_exp
 +        | simp_exp '*' simp_exp
 +        | simp_exp '/' simp_exp
 +        | simp_exp '%' simp_exp
 +        | simp_exp '+' simp_exp
 +        | simp_exp '-' simp_exp
 +        | variable INCREMENT
 +        | variable DECREMENT
 +        ;
  
  non_post_simp_exp
 -      : '!' simp_exp %prec UNARY
 -      | '(' exp r_paren
 -      | LEX_BUILTIN
 -        '(' opt_expression_list r_paren
 -      | LEX_LENGTH '(' opt_expression_list r_paren
 -      | LEX_LENGTH
 -      | FUNC_CALL '(' opt_expression_list r_paren
 -      | variable
 -      | INCREMENT variable
 -      | DECREMENT variable
 -      | YNUMBER
 -      | YSTRING
 -      | '-' simp_exp    %prec UNARY
 -      | '+' simp_exp    %prec UNARY
 -      ;
 +        : '!' simp_exp %prec UNARY
 +        | '(' exp r_paren
 +        | LEX_BUILTIN
 +          '(' opt_expression_list r_paren
 +        | LEX_LENGTH '(' opt_expression_list r_paren
 +        | LEX_LENGTH
 +        | FUNC_CALL '(' opt_expression_list r_paren
 +        | variable
 +        | INCREMENT variable
 +        | DECREMENT variable
 +        | YNUMBER
 +        | YSTRING
 +        | '-' simp_exp    %prec UNARY
 +        | '+' simp_exp    %prec UNARY
 +        ;
  
  opt_variable
 -      : /* empty */
 -      | variable
 -      ;
 +        : /* empty */
 +        | variable
 +        ;
  
  variable
 -      : NAME
 -      | NAME '[' expression_list ']'
 -      | '$' non_post_simp_exp
 -      ;
 +        : NAME
 +        | NAME '[' expression_list ']'
 +        | '$' non_post_simp_exp
 +        ;
  
  l_brace
 -      : '{' opt_nls
 -      ;
 +        : '{' opt_nls
 +        ;
  
  r_brace
 -      : '}' opt_nls
 -      ;
 +        : '}' opt_nls
 +        ;
  
  r_paren
 -      : ')'
 -      ;
 +        : ')'
 +        ;
  
  opt_semi
 -      : /* empty */
 -      | semi
 -      ;
 +        : /* empty */
 +        | semi
 +        ;
  
  semi
 -      : ';'
 -      ;
 +        : ';'
 +        ;
  
 -comma : ',' opt_nls
 -      ;
 +comma   : ',' opt_nls
 +        ;
  ]],
  
  dnl INPUT
@@@ -427,8 -427,8 +427,8 @@@ dnl don't like even `print $!4;'
  
  dnl BISON-STDERR
  [AT_COND_CASE([[canonical LR]],
 -[[input.y: conflicts: 265 shift/reduce]],
 -[[input.y: conflicts: 65 shift/reduce]])[
 +[[input.y: warning: 265 shift/reduce conflicts [-Wconflicts-sr]]],
 +[[input.y: warning: 65 shift/reduce conflicts [-Wconflicts-sr]]])[
  ]],
  
  dnl LAST-STATE
@@@ -489,7 -489,7 +489,7 @@@ dnl   - 61 -> 328: reduce -> shift on '
       $default  reduce using rule 45 (statement)
  +
  +
- +state 320
+ +State 320
  +
  +  139 non_post_simp_exp: . '!' simp_exp
  +  140                  | . '(' exp r_paren
  +    variable           go to state 63
  +
  +
- +state 321
+ +State 321
  +
  +  146 non_post_simp_exp: INCREMENT . variable
  +  154 variable: . NAME
  +    variable  go to state 50
  +
  +
- +state 322
+ +State 322
  +
  +  147 non_post_simp_exp: DECREMENT . variable
  +  154 variable: . NAME
  +    variable  go to state 51
  +
  +
- +state 323
+ +State 323
  +
  +  130 simp_exp: . non_post_simp_exp
  +  131         | . simp_exp '^' simp_exp
  +    variable           go to state 57
  +
  +
- +state 324
+ +State 324
  +
  +  130 simp_exp: . non_post_simp_exp
  +  131         | . simp_exp '^' simp_exp
  +    variable           go to state 57
  +
  +
- +state 325
+ +State 325
  +
  +  130 simp_exp: . non_post_simp_exp
  +  131         | . simp_exp '^' simp_exp
  +    variable           go to state 57
  +
  +
- +state 326
+ +State 326
  +
  +  131 simp_exp: simp_exp . '^' simp_exp
  +  132         | simp_exp . '*' simp_exp
  +    Conflict between rule 151 and token '-' resolved as reduce ('-' < UNARY).
  +
  +
- +state 327
+ +State 327
  +
  +  131 simp_exp: simp_exp . '^' simp_exp
  +  132         | simp_exp . '*' simp_exp
  +    Conflict between rule 150 and token '-' resolved as reduce ('-' < UNARY).
  +
  +
- +state 328
+ +State 328
  +
  +  131 simp_exp: simp_exp . '^' simp_exp
  +  132         | simp_exp . '*' simp_exp
@@@ -783,33 -783,33 +783,33 @@@ dnl In the case of the syntax error, th
  AT_TEST_EXISTING_GRAMMAR([[GNU Cim Grammar]],
  [[
  %token
 -      HACTIVATE HAFTER /*HAND*/ HARRAY HAT
 -      HBEFORE HBEGIN HBOOLEAN
 -      HCHARACTER HCLASS /*HCOMMENT*/ HCONC
 -      HDELAY HDO
 -      HELSE HEND HEQ /*HEQV*/ HEXTERNAL
 -      HFOR
 -      HGE HGO HGOTO HGT
 -      HHIDDEN
 -      HIF /*HIMP*/ HIN HINNER HINSPECT HINTEGER HIS
 -      HLABEL HLE HLONG HLT
 -      HNAME HNE HNEW HNONE /*HNOT*/ HNOTEXT
 -      /*HOR*/ HOTHERWISE
 -      HPRIOR HPROCEDURE HPROTECTED
 -      HQUA
 -      HREACTIVATE HREAL HREF
 -      HSHORT HSTEP HSWITCH
 -      HTEXT HTHEN HTHIS HTO
 -      HUNTIL
 -      HVALUE HVAR HVIRTUAL
 -      HWHEN HWHILE
 -
 -      HASSIGNVALUE HASSIGNREF
 -      /*HDOT*/ HPAREXPSEPARATOR HLABELSEPARATOR HSTATEMENTSEPARATOR
 -      HBEGPAR HENDPAR
 -      HEQR HNER
 -      HADD HSUB HMUL HDIV HINTDIV HEXP
 -      HDOTDOTDOT
 +        HACTIVATE HAFTER /*HAND*/ HARRAY HAT
 +        HBEFORE HBEGIN HBOOLEAN
 +        HCHARACTER HCLASS /*HCOMMENT*/ HCONC
 +        HDELAY HDO
 +        HELSE HEND HEQ /*HEQV*/ HEXTERNAL
 +        HFOR
 +        HGE HGO HGOTO HGT
 +        HHIDDEN
 +        HIF /*HIMP*/ HIN HINNER HINSPECT HINTEGER HIS
 +        HLABEL HLE HLONG HLT
 +        HNAME HNE HNEW HNONE /*HNOT*/ HNOTEXT
 +        /*HOR*/ HOTHERWISE
 +        HPRIOR HPROCEDURE HPROTECTED
 +        HQUA
 +        HREACTIVATE HREAL HREF
 +        HSHORT HSTEP HSWITCH
 +        HTEXT HTHEN HTHIS HTO
 +        HUNTIL
 +        HVALUE HVAR HVIRTUAL
 +        HWHEN HWHILE
 +
 +        HASSIGNVALUE HASSIGNREF
 +        /*HDOT*/ HPAREXPSEPARATOR HLABELSEPARATOR HSTATEMENTSEPARATOR
 +        HBEGPAR HENDPAR
 +        HEQR HNER
 +        HADD HSUB HMUL HDIV HINTDIV HEXP
 +        HDOTDOTDOT
  
  %token HIDENTIFIER
  %token HBOOLEANKONST HINTEGERKONST HCHARACTERKONST
  
  %left HVALRELOPERATOR HREFRELOPERATOR HOBJRELOPERATOR
  
 -%left HCONC
 +%left   HCONC
  
  %left HTERMOPERATOR
  %left UNEAR
  [[
  /* GRAMATIKK FOR PROGRAM MODULES */
  MAIN_MODULE     :       {}
 -                      MODULS
 -              |       error HSTATEMENTSEPARATOR MBEE_DECLSTMS
 -              ;
 -EXT_DECLARATION       :       HEXTERNAL
 -                      MBEE_TYPE
 -                      HPROCEDURE
 -                              {}
 -                      EXT_LIST
 -              |
 -                      HEXTERNAL
 -                      HIDENTIFIER
 -                      HPROCEDURE
 -                              {}
 -                      HIDENTIFIER {}
 -                      EXTERNAL_KIND_ITEM
 -              |       HEXTERNAL
 -                      HCLASS
 -                              {}
 -                      EXT_LIST
 -
 -              ;
 -EXTERNAL_KIND_ITEM:   EXT_IDENT
 -                      HOBJRELOPERATOR
 -                              {}
 -                      MBEE_TYPE HPROCEDURE
 -                      HIDENTIFIER
 -                              {}
 -                      HEADING EMPTY_BLOCK
 -                              {}
 -/*            |
 -                      EXT_IDENT
 -                              {}
 -                      MBEE_REST_EXT_LIST
 -              ;
 -MBEE_REST_EXT_LIST:   /* EMPTY
 -              |       HPAREXPSEPARATOR EXT_KIND_LIST
 -              ;
 -EXT_KIND_LIST :       EXT_KIND_ITEM
 -              |       EXT_KIND_LIST HPAREXPSEPARATOR EXT_KIND_ITEM
 -              ;
 -EXT_KIND_ITEM :       HIDENTIFIER
 -                      EXT_IDENT
 -                              {}*/
 -              ;
 -EMPTY_BLOCK   :       /*EMPT*/
 -              |       HBEGIN HEND
 -              ;
 -EXT_LIST      :       EXT_ITEM
 -              |       EXT_LIST HPAREXPSEPARATOR EXT_ITEM
 -              ;
 -EXT_ITEM      :       HIDENTIFIER
 -                      EXT_IDENT
 -              ;
 -EXT_IDENT     :       /* EMPTY */
 -              |       HVALRELOPERATOR {}
 -                      HTEXTKONST
 -              ;
 +                        MODULS
 +                |       error HSTATEMENTSEPARATOR MBEE_DECLSTMS
 +                ;
 +EXT_DECLARATION :       HEXTERNAL
 +                        MBEE_TYPE
 +                        HPROCEDURE
 +                                {}
 +                        EXT_LIST
 +                |
 +                        HEXTERNAL
 +                        HIDENTIFIER
 +                        HPROCEDURE
 +                                {}
 +                        HIDENTIFIER {}
 +                        EXTERNAL_KIND_ITEM
 +                |       HEXTERNAL
 +                        HCLASS
 +                                {}
 +                        EXT_LIST
 +
 +                ;
 +EXTERNAL_KIND_ITEM:     EXT_IDENT
 +                        HOBJRELOPERATOR
 +                                {}
 +                        MBEE_TYPE HPROCEDURE
 +                        HIDENTIFIER
 +                                {}
 +                        HEADING EMPTY_BLOCK
 +                                {}
 +/*              |
 +                        EXT_IDENT
 +                                {}
 +                        MBEE_REST_EXT_LIST
 +                ;
 +MBEE_REST_EXT_LIST:     /* EMPTY
 +                |       HPAREXPSEPARATOR EXT_KIND_LIST
 +                ;
 +EXT_KIND_LIST   :       EXT_KIND_ITEM
 +                |       EXT_KIND_LIST HPAREXPSEPARATOR EXT_KIND_ITEM
 +                ;
 +EXT_KIND_ITEM   :       HIDENTIFIER
 +                        EXT_IDENT
 +                                {}*/
 +                ;
 +EMPTY_BLOCK     :       /*EMPT*/
 +                |       HBEGIN HEND
 +                ;
 +EXT_LIST        :       EXT_ITEM
 +                |       EXT_LIST HPAREXPSEPARATOR EXT_ITEM
 +                ;
 +EXT_ITEM        :       HIDENTIFIER
 +                        EXT_IDENT
 +                ;
 +EXT_IDENT       :       /* EMPTY */
 +                |       HVALRELOPERATOR {}
 +                        HTEXTKONST
 +                ;
  /* GRAMATIKK FOR TYPER */
  NO_TYPE         :       /*EMPT*/
 -              ;
 +                ;
  MBEE_TYPE       :       NO_TYPE
 -              |       TYPE
 -              ;
 +                |       TYPE
 +                ;
  TYPE            :       HREF HBEGPAR
 -                      HIDENTIFIER
 -                              {}
 -                      HENDPAR
 -              |       HTEXT
 -              |       HBOOLEAN
 -              |       HCHARACTER
 -              |       HSHORT HINTEGER
 -              |       HINTEGER
 -              |       HREAL
 -              |       HLONG HREAL
 -              ;
 +                        HIDENTIFIER
 +                                {}
 +                        HENDPAR
 +                |       HTEXT
 +                |       HBOOLEAN
 +                |       HCHARACTER
 +                |       HSHORT HINTEGER
 +                |       HINTEGER
 +                |       HREAL
 +                |       HLONG HREAL
 +                ;
  
  /* GRAMATIKK FOR DEL AV SETNINGER */
  MBEE_ELSE_PART  :       /*EMPT*/
 -/*            |       HELSE
 -                      HIF
 -                      EXPRESSION
 -                      HTHEN   {}
 -                      BLOCK   {}
 -                      MBEE_ELSE_PART          {}*/
 -              |       HELSE   {}
 -                      BLOCK
 -              ;
 +/*              |       HELSE
 +                        HIF
 +                        EXPRESSION
 +                        HTHEN   {}
 +                        BLOCK   {}
 +                        MBEE_ELSE_PART          {}*/
 +                |       HELSE   {}
 +                        BLOCK
 +                ;
  FOR_LIST        :       FOR_LIST_ELEMENT
 -              |       FOR_LIST_ELEMENT
 -                      HPAREXPSEPARATOR
 -                      FOR_LIST
 -              ;
 +                |       FOR_LIST_ELEMENT
 +                        HPAREXPSEPARATOR
 +                        FOR_LIST
 +                ;
  FOR_LIST_ELEMENT:       EXPRESSION
 -                      MBEE_F_L_EL_R_PT
 -              ;
 +                        MBEE_F_L_EL_R_PT
 +                ;
  MBEE_F_L_EL_R_PT:       /*EMPT*/
 -              |       HWHILE
 -                      EXPRESSION
 -              |       HSTEP
 -                      EXPRESSION
 -                      HUNTIL
 -                      EXPRESSION
 -              ;
 +                |       HWHILE
 +                        EXPRESSION
 +                |       HSTEP
 +                        EXPRESSION
 +                        HUNTIL
 +                        EXPRESSION
 +                ;
  GOTO            :       HGO
 -                      HTO
 -              |       HGOTO
 -              ;
 +                        HTO
 +                |       HGOTO
 +                ;
  CONN_STATE_R_PT :       WHEN_CLAUSE_LIST
 -              |       HDO   {}
 -                      BLOCK
 -              ;
 +                |       HDO   {}
 +                        BLOCK
 +                ;
  WHEN_CLAUSE_LIST:       HWHEN
 -                      HIDENTIFIER
 -                      HDO    {}
 -                      BLOCK
 -              |       WHEN_CLAUSE_LIST
 -                      HWHEN
 -                      HIDENTIFIER
 -                      HDO    {}
 -                      BLOCK
 -              ;
 +                        HIDENTIFIER
 +                        HDO    {}
 +                        BLOCK
 +                |       WHEN_CLAUSE_LIST
 +                        HWHEN
 +                        HIDENTIFIER
 +                        HDO    {}
 +                        BLOCK
 +                ;
  MBEE_OTWI_CLAUS :       /*EMPT*/
 -              |       HOTHERWISE {}
 -
 -                      BLOCK
 -              ;
 -ACTIVATOR     :       HACTIVATE
 -              |       HREACTIVATE
 -              ;
 -SCHEDULE      :       /*EMPT*/
 -              |       ATDELAY EXPRESSION      {}
 -                      PRIOR
 -              |       BEFOREAFTER             {}
 -                      EXPRESSION
 -              ;
 -ATDELAY               :       HAT
 -              |       HDELAY
 -              ;
 -BEFOREAFTER   :       HBEFORE
 -              |       HAFTER
 -              ;
 -PRIOR         :       /*EMPT*/
 -              |       HPRIOR
 -              ;
 +                |       HOTHERWISE {}
 +
 +                        BLOCK
 +                ;
 +ACTIVATOR       :       HACTIVATE
 +                |       HREACTIVATE
 +                ;
 +SCHEDULE        :       /*EMPT*/
 +                |       ATDELAY EXPRESSION      {}
 +                        PRIOR
 +                |       BEFOREAFTER             {}
 +                        EXPRESSION
 +                ;
 +ATDELAY         :       HAT
 +                |       HDELAY
 +                ;
 +BEFOREAFTER     :       HBEFORE
 +                |       HAFTER
 +                ;
 +PRIOR           :       /*EMPT*/
 +                |       HPRIOR
 +                ;
  /* GRAMATIKK FOR SETNINGER OG DEKLARASJONER */
  MODULSTATEMENT  :       HWHILE
 -                      EXPRESSION
 -                      HDO     {}
 -                      BLOCK
 -              |       HIF
 -                      EXPRESSION
 -                      HTHEN   {}
 -                      BLOCK   {}
 -                      MBEE_ELSE_PART
 -              |       HFOR
 -                      HIDENTIFIER
 -                      HASSIGN {}
 -                      FOR_LIST
 -                      HDO     {}
 -                      BLOCK
 -              |       GOTO
 -                      EXPRESSION
 -              |       HINSPECT
 -                      EXPRESSION              {}
 -                      CONN_STATE_R_PT
 -                              {}
 -                      MBEE_OTWI_CLAUS
 -              |       HINNER
 -              |       HIDENTIFIER
 -                      HLABELSEPARATOR
 -                              {}
 -                      DECLSTATEMENT
 -              |       EXPRESSION_SIMP
 -                      HBEGIN
 -                              {}
 -                      IMPORT_SPEC_MODULE
 -                              {}
 -                      MBEE_DECLSTMS
 -                      HEND
 -              |       EXPRESSION_SIMP HBEGIN error HSTATEMENTSEPARATOR
 -                      MBEE_DECLSTMS HEND
 -              |       EXPRESSION_SIMP HBEGIN error HEND
 -              |       EXPRESSION_SIMP
 -              |       ACTIVATOR EXPRESSION SCHEDULE
 -              |       HBEGIN
 -                              {}
 -                      MBEE_DECLSTMS
 -                      HEND
 -              |       MBEE_TYPE HPROCEDURE
 -                      HIDENTIFIER
 -                              {}
 -                      HEADING BLOCK
 -              |       HIDENTIFIER
 -                      HCLASS
 -                      NO_TYPE
 -                              {}
 -                      IMPORT_SPEC_MODULE
 -                      HIDENTIFIER
 -                              {}
 -                      HEADING
 -                      BLOCK
 -              |       HCLASS
 -                      NO_TYPE
 -                      HIDENTIFIER
 -                              {}
 -                      HEADING
 -                      BLOCK
 -              |       EXT_DECLARATION
 -              |       /*EMPT*/
 -              ;
 +                        EXPRESSION
 +                        HDO     {}
 +                        BLOCK
 +                |       HIF
 +                        EXPRESSION
 +                        HTHEN   {}
 +                        BLOCK   {}
 +                        MBEE_ELSE_PART
 +                |       HFOR
 +                        HIDENTIFIER
 +                        HASSIGN {}
 +                        FOR_LIST
 +                        HDO     {}
 +                        BLOCK
 +                |       GOTO
 +                        EXPRESSION
 +                |       HINSPECT
 +                        EXPRESSION              {}
 +                        CONN_STATE_R_PT
 +                                {}
 +                        MBEE_OTWI_CLAUS
 +                |       HINNER
 +                |       HIDENTIFIER
 +                        HLABELSEPARATOR
 +                                {}
 +                        DECLSTATEMENT
 +                |       EXPRESSION_SIMP
 +                        HBEGIN
 +                                {}
 +                        IMPORT_SPEC_MODULE
 +                                {}
 +                        MBEE_DECLSTMS
 +                        HEND
 +                |       EXPRESSION_SIMP HBEGIN error HSTATEMENTSEPARATOR
 +                        MBEE_DECLSTMS HEND
 +                |       EXPRESSION_SIMP HBEGIN error HEND
 +                |       EXPRESSION_SIMP
 +                |       ACTIVATOR EXPRESSION SCHEDULE
 +                |       HBEGIN
 +                                {}
 +                        MBEE_DECLSTMS
 +                        HEND
 +                |       MBEE_TYPE HPROCEDURE
 +                        HIDENTIFIER
 +                                {}
 +                        HEADING BLOCK
 +                |       HIDENTIFIER
 +                        HCLASS
 +                        NO_TYPE
 +                                {}
 +                        IMPORT_SPEC_MODULE
 +                        HIDENTIFIER
 +                                {}
 +                        HEADING
 +                        BLOCK
 +                |       HCLASS
 +                        NO_TYPE
 +                        HIDENTIFIER
 +                                {}
 +                        HEADING
 +                        BLOCK
 +                |       EXT_DECLARATION
 +                |       /*EMPT*/
 +                ;
  IMPORT_SPEC_MODULE:
 -              ;
 -DECLSTATEMENT :       MODULSTATEMENT
 -              |       TYPE
 -                      HIDENTIFIER
 -                      MBEE_CONSTANT
 -                      HPAREXPSEPARATOR
 -                              {}
 -                      IDENTIFIER_LISTC
 -              |       TYPE
 -                      HIDENTIFIER
 -                      MBEE_CONSTANT
 -              |       MBEE_TYPE
 -                      HARRAY  {}
 -                      ARR_SEGMENT_LIST
 -              |       HSWITCH
 -                      HIDENTIFIER
 -                      HASSIGN {}
 -                      SWITCH_LIST
 -              ;
 +                ;
 +DECLSTATEMENT   :       MODULSTATEMENT
 +                |       TYPE
 +                        HIDENTIFIER
 +                        MBEE_CONSTANT
 +                        HPAREXPSEPARATOR
 +                                {}
 +                        IDENTIFIER_LISTC
 +                |       TYPE
 +                        HIDENTIFIER
 +                        MBEE_CONSTANT
 +                |       MBEE_TYPE
 +                        HARRAY  {}
 +                        ARR_SEGMENT_LIST
 +                |       HSWITCH
 +                        HIDENTIFIER
 +                        HASSIGN {}
 +                        SWITCH_LIST
 +                ;
  BLOCK           :       DECLSTATEMENT
 -              |       HBEGIN MBEE_DECLSTMS HEND
 -              |       HBEGIN error HSTATEMENTSEPARATOR MBEE_DECLSTMS HEND
 -              |       HBEGIN error HEND
 -              ;
 +                |       HBEGIN MBEE_DECLSTMS HEND
 +                |       HBEGIN error HSTATEMENTSEPARATOR MBEE_DECLSTMS HEND
 +                |       HBEGIN error HEND
 +                ;
  MBEE_DECLSTMS   :       MBEE_DECLSTMSU
 -              ;
 +                ;
  MBEE_DECLSTMSU  :       DECLSTATEMENT
 -              |       MBEE_DECLSTMSU
 -                      HSTATEMENTSEPARATOR
 -                      DECLSTATEMENT
 -              ;
 -MODULS                :       MODULSTATEMENT
 -              |       MODULS HSTATEMENTSEPARATOR MODULSTATEMENT
 -              ;
 +                |       MBEE_DECLSTMSU
 +                        HSTATEMENTSEPARATOR
 +                        DECLSTATEMENT
 +                ;
 +MODULS          :       MODULSTATEMENT
 +                |       MODULS HSTATEMENTSEPARATOR MODULSTATEMENT
 +                ;
  /* GRAMATIKK FOR DEL AV DEKLARASJONER */
  ARR_SEGMENT_LIST:       ARR_SEGMENT
 -              |       ARR_SEGMENT_LIST
 -                      HPAREXPSEPARATOR
 -                      ARR_SEGMENT
 -              ;
 -ARR_SEGMENT   :       ARRAY_SEGMENT
 -                      HBEGPAR
 -                      BAUND_PAIR_LIST HENDPAR
 -              ;
 +                |       ARR_SEGMENT_LIST
 +                        HPAREXPSEPARATOR
 +                        ARR_SEGMENT
 +                ;
 +ARR_SEGMENT     :       ARRAY_SEGMENT
 +                        HBEGPAR
 +                        BAUND_PAIR_LIST HENDPAR
 +                ;
  ARRAY_SEGMENT   :       ARRAY_SEGMENT_EL        {}
  
 -              |       ARRAY_SEGMENT_EL
 -                      HPAREXPSEPARATOR
 -                      ARRAY_SEGMENT
 -              ;
 +                |       ARRAY_SEGMENT_EL
 +                        HPAREXPSEPARATOR
 +                        ARRAY_SEGMENT
 +                ;
  ARRAY_SEGMENT_EL:       HIDENTIFIER
 -              ;
 +                ;
  BAUND_PAIR_LIST :       BAUND_PAIR
 -              |       BAUND_PAIR
 -                      HPAREXPSEPARATOR
 -                      BAUND_PAIR_LIST
 -              ;
 +                |       BAUND_PAIR
 +                        HPAREXPSEPARATOR
 +                        BAUND_PAIR_LIST
 +                ;
  BAUND_PAIR      :       EXPRESSION
 -                      HLABELSEPARATOR
 -                      EXPRESSION
 -              ;
 +                        HLABELSEPARATOR
 +                        EXPRESSION
 +                ;
  SWITCH_LIST     :       EXPRESSION
 -              |       EXPRESSION
 -                      HPAREXPSEPARATOR
 -                      SWITCH_LIST
 -              ;
 +                |       EXPRESSION
 +                        HPAREXPSEPARATOR
 +                        SWITCH_LIST
 +                ;
  HEADING         :       MBEE_FMAL_PAR_P HSTATEMENTSEPARATOR {}
 -                      MBEE_MODE_PART  {}
 -                      MBEE_SPEC_PART  {}
 -                      MBEE_PROT_PART  {}
 -                      MBEE_VIRT_PART
 -              ;
 +                        MBEE_MODE_PART  {}
 +                        MBEE_SPEC_PART  {}
 +                        MBEE_PROT_PART  {}
 +                        MBEE_VIRT_PART
 +                ;
  MBEE_FMAL_PAR_P :       /*EMPT*/
 -              |       FMAL_PAR_PART
 -              ;
 +                |       FMAL_PAR_PART
 +                ;
  FMAL_PAR_PART   :       HBEGPAR NO_TYPE
 -                      MBEE_LISTV HENDPAR
 -              ;
 +                        MBEE_LISTV HENDPAR
 +                ;
  MBEE_LISTV      :       /*EMPT*/
 -              |       LISTV
 -              ;
 +                |       LISTV
 +                ;
  LISTV           :       HIDENTIFIER
 -              |       FPP_CATEG HDOTDOTDOT
 -              |       HIDENTIFIER     {}
 -                      HPAREXPSEPARATOR LISTV
 -              |       FPP_SPEC
 -              |       FPP_SPEC
 -                      HPAREXPSEPARATOR LISTV
 -              ;
 +                |       FPP_CATEG HDOTDOTDOT
 +                |       HIDENTIFIER     {}
 +                        HPAREXPSEPARATOR LISTV
 +                |       FPP_SPEC
 +                |       FPP_SPEC
 +                        HPAREXPSEPARATOR LISTV
 +                ;
  FPP_HEADING     :       HBEGPAR NO_TYPE
 -                      FPP_MBEE_LISTV HENDPAR
 -              ;
 +                        FPP_MBEE_LISTV HENDPAR
 +                ;
  FPP_MBEE_LISTV  :       /*EMPT*/
 -              |       FPP_LISTV
 -              ;
 -FPP_LISTV       :     FPP_CATEG HDOTDOTDOT
 -              |       FPP_SPEC
 -              |       FPP_SPEC
 -                      HPAREXPSEPARATOR LISTV
 -              ;
 +                |       FPP_LISTV
 +                ;
 +FPP_LISTV       :       FPP_CATEG HDOTDOTDOT
 +                |       FPP_SPEC
 +                |       FPP_SPEC
 +                        HPAREXPSEPARATOR LISTV
 +                ;
  FPP_SPEC        :       FPP_CATEG SPECIFIER HIDENTIFIER
 -              |       FPP_CATEG FPP_PROC_DECL_IN_SPEC
 -              ;
 +                |       FPP_CATEG FPP_PROC_DECL_IN_SPEC
 +                ;
  FPP_CATEG       :       HNAME HLABELSEPARATOR
 -              |       HVALUE HLABELSEPARATOR
 -              |       HVAR HLABELSEPARATOR
 -              |       /*EMPT*/
 -              ;
 -FPP_PROC_DECL_IN_SPEC:        MBEE_TYPE HPROCEDURE
 -                      HIDENTIFIER
 -                                      {}
 -                      FPP_HEADING {} { /* Yes, two "final" actions. */ }
 -              ;
 +                |       HVALUE HLABELSEPARATOR
 +                |       HVAR HLABELSEPARATOR
 +                |       /*EMPT*/
 +                ;
 +FPP_PROC_DECL_IN_SPEC:  MBEE_TYPE HPROCEDURE
 +                        HIDENTIFIER
 +                                        {}
 +                        FPP_HEADING {} { /* Yes, two "final" actions. */ }
 +                ;
  IDENTIFIER_LISTV:       HIDENTIFIER
 -              |       HDOTDOTDOT
 -              |       HIDENTIFIER     {}
 -                      HPAREXPSEPARATOR IDENTIFIER_LISTV
 -              ;
 +                |       HDOTDOTDOT
 +                |       HIDENTIFIER     {}
 +                        HPAREXPSEPARATOR IDENTIFIER_LISTV
 +                ;
  MBEE_MODE_PART  :       /*EMPT*/
 -              |       MODE_PART
 -              ;
 +                |       MODE_PART
 +                ;
  MODE_PART       :       NAME_PART
 -              |       VALUE_PART
 -              |       VAR_PART
 -              |       NAME_PART VALUE_PART
 -              |       VALUE_PART NAME_PART
 -              |       NAME_PART VAR_PART
 -              |       VAR_PART NAME_PART
 -              |       VALUE_PART VAR_PART
 -              |       VAR_PART VALUE_PART
 -              |       VAR_PART NAME_PART VALUE_PART
 -              |       NAME_PART VAR_PART VALUE_PART
 -              |       NAME_PART VALUE_PART VAR_PART
 -              |       VAR_PART VALUE_PART NAME_PART
 -              |       VALUE_PART VAR_PART NAME_PART
 -              |       VALUE_PART NAME_PART VAR_PART
 -              ;
 +                |       VALUE_PART
 +                |       VAR_PART
 +                |       NAME_PART VALUE_PART
 +                |       VALUE_PART NAME_PART
 +                |       NAME_PART VAR_PART
 +                |       VAR_PART NAME_PART
 +                |       VALUE_PART VAR_PART
 +                |       VAR_PART VALUE_PART
 +                |       VAR_PART NAME_PART VALUE_PART
 +                |       NAME_PART VAR_PART VALUE_PART
 +                |       NAME_PART VALUE_PART VAR_PART
 +                |       VAR_PART VALUE_PART NAME_PART
 +                |       VALUE_PART VAR_PART NAME_PART
 +                |       VALUE_PART NAME_PART VAR_PART
 +                ;
  NAME_PART       :       HNAME           {}
 -                      IDENTIFIER_LISTV
 -                      HSTATEMENTSEPARATOR
 -              ;
 +                        IDENTIFIER_LISTV
 +                        HSTATEMENTSEPARATOR
 +                ;
  VAR_PART        :       HVAR            {}
 -                      IDENTIFIER_LISTV
 -                      HSTATEMENTSEPARATOR
 -              ;
 +                        IDENTIFIER_LISTV
 +                        HSTATEMENTSEPARATOR
 +                ;
  VALUE_PART      :       HVALUE          {}
 -                      IDENTIFIER_LISTV HSTATEMENTSEPARATOR
 -              ;
 +                        IDENTIFIER_LISTV HSTATEMENTSEPARATOR
 +                ;
  MBEE_SPEC_PART  :       /*EMPT*/
 -              |       SPEC_PART
 -              ;
 +                |       SPEC_PART
 +                ;
  SPEC_PART       :       ONE_SPEC
 -              |       SPEC_PART ONE_SPEC
 -              ;
 -ONE_SPEC      :       SPECIFIER IDENTIFIER_LIST HSTATEMENTSEPARATOR
 -              |       NO_TYPE HPROCEDURE HIDENTIFIER HOBJRELOPERATOR
 -                        {}
 -                      PROC_DECL_IN_SPEC HSTATEMENTSEPARATOR
 -              |       FPP_PROC_DECL_IN_SPEC HSTATEMENTSEPARATOR
 -              |       MBEE_TYPE HPROCEDURE HIDENTIFIER HSTATEMENTSEPARATOR
 -              |       MBEE_TYPE HPROCEDURE HIDENTIFIER HPAREXPSEPARATOR
 -                      IDENTIFIER_LIST HSTATEMENTSEPARATOR
 -              ;
 +                |       SPEC_PART ONE_SPEC
 +                ;
 +ONE_SPEC        :       SPECIFIER IDENTIFIER_LIST HSTATEMENTSEPARATOR
 +                |       NO_TYPE HPROCEDURE HIDENTIFIER HOBJRELOPERATOR
 +                          {}
 +                        PROC_DECL_IN_SPEC HSTATEMENTSEPARATOR
 +                |       FPP_PROC_DECL_IN_SPEC HSTATEMENTSEPARATOR
 +                |       MBEE_TYPE HPROCEDURE HIDENTIFIER HSTATEMENTSEPARATOR
 +                |       MBEE_TYPE HPROCEDURE HIDENTIFIER HPAREXPSEPARATOR
 +                        IDENTIFIER_LIST HSTATEMENTSEPARATOR
 +                ;
  SPECIFIER       :       TYPE
 -              |       MBEE_TYPE
 -                      HARRAY
 -              |       HLABEL
 -              |       HSWITCH
 -              ;
 -PROC_DECL_IN_SPEC:    MBEE_TYPE HPROCEDURE
 -                      HIDENTIFIER
 -                                      {}
 -                      HEADING
 -                                      {}
 -                      MBEE_BEGIN_END
 -              ;
 -MBEE_BEGIN_END        :       /* EMPTY */
 -              |       HBEGIN HEND
 -              ;
 +                |       MBEE_TYPE
 +                        HARRAY
 +                |       HLABEL
 +                |       HSWITCH
 +                ;
 +PROC_DECL_IN_SPEC:      MBEE_TYPE HPROCEDURE
 +                        HIDENTIFIER
 +                                        {}
 +                        HEADING
 +                                        {}
 +                        MBEE_BEGIN_END
 +                ;
 +MBEE_BEGIN_END  :       /* EMPTY */
 +                |       HBEGIN HEND
 +                ;
  MBEE_PROT_PART  :       /*EMPT*/
 -              |       PROTECTION_PART
 -              ;
 +                |       PROTECTION_PART
 +                ;
  PROTECTION_PART :       PROT_SPECIFIER IDENTIFIER_LIST
 -                      HSTATEMENTSEPARATOR
 -              |       PROTECTION_PART  PROT_SPECIFIER
 -                      IDENTIFIER_LIST HSTATEMENTSEPARATOR
 -              ;
 +                        HSTATEMENTSEPARATOR
 +                |       PROTECTION_PART  PROT_SPECIFIER
 +                        IDENTIFIER_LIST HSTATEMENTSEPARATOR
 +                ;
  PROT_SPECIFIER  :       HHIDDEN
 -              |       HPROTECTED
 -              |       HHIDDEN
 -                      HPROTECTED
 -              |       HPROTECTED
 -                      HHIDDEN
 -              ;
 +                |       HPROTECTED
 +                |       HHIDDEN
 +                        HPROTECTED
 +                |       HPROTECTED
 +                        HHIDDEN
 +                ;
  MBEE_VIRT_PART  :       /*EMPT*/
 -              |       VIRTUAL_PART
 -              ;
 +                |       VIRTUAL_PART
 +                ;
  VIRTUAL_PART    :       HVIRTUAL
 -                      HLABELSEPARATOR
 -                      MBEE_SPEC_PART
 -              ;
 +                        HLABELSEPARATOR
 +                        MBEE_SPEC_PART
 +                ;
  IDENTIFIER_LIST :       HIDENTIFIER
 -              |       IDENTIFIER_LIST HPAREXPSEPARATOR
 -                      HIDENTIFIER
 -              ;
 +                |       IDENTIFIER_LIST HPAREXPSEPARATOR
 +                        HIDENTIFIER
 +                ;
  IDENTIFIER_LISTC:       HIDENTIFIER
 -                      MBEE_CONSTANT
 -              |       IDENTIFIER_LISTC HPAREXPSEPARATOR
 -                      HIDENTIFIER
 -                      MBEE_CONSTANT
 -              ;
 -MBEE_CONSTANT :       /* EMPTY */
 -              |       HVALRELOPERATOR
 -                              {}
 -                      EXPRESSION
 -              ;
 +                        MBEE_CONSTANT
 +                |       IDENTIFIER_LISTC HPAREXPSEPARATOR
 +                        HIDENTIFIER
 +                        MBEE_CONSTANT
 +                ;
 +MBEE_CONSTANT   :       /* EMPTY */
 +                |       HVALRELOPERATOR
 +                                {}
 +                        EXPRESSION
 +                ;
  
  /* GRAMATIKK FOR UTTRYKK */
  EXPRESSION      :       EXPRESSION_SIMP
 -              |       HIF
 -                      EXPRESSION
 -                      HTHEN
 -                      EXPRESSION
 -                      HELSE
 -                      EXPRESSION
 -              ;
 -EXPRESSION_SIMP :     EXPRESSION_SIMP
 -                      HASSIGN
 -                      EXPRESSION
 -              |
 -
 -                      EXPRESSION_SIMP
 -                      HCONC
 -                      EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP HOR
 -                      HELSE
 -                      EXPRESSION_SIMP
 -                      %prec HORELSE
 -              |       EXPRESSION_SIMP HAND
 -                      HTHEN
 -                      EXPRESSION_SIMP
 -                      %prec HANDTHEN
 -              |       EXPRESSION_SIMP
 -                      HEQV EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HIMP EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HOR EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HAND EXPRESSION_SIMP
 -              |       HNOT EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HVALRELOPERATOR
 -                      EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HREFRELOPERATOR
 -                      EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HOBJRELOPERATOR
 -                      EXPRESSION_SIMP
 -              |       HTERMOPERATOR
 -                      EXPRESSION_SIMP %prec UNEAR
 -              |       EXPRESSION_SIMP
 -                      HTERMOPERATOR
 -                      EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HFACTOROPERATOR
 -                      EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HPRIMARYOPERATOR
 -                      EXPRESSION_SIMP
 -              |       HBEGPAR
 -                      EXPRESSION HENDPAR
 -              |       HTEXTKONST
 -              |       HCHARACTERKONST
 -              |       HREALKONST
 -              |       HINTEGERKONST
 -              |       HBOOLEANKONST
 -              |       HNONE
 -              |       HIDENTIFIER
 -                              {}
 -                      MBEE_ARG_R_PT
 -              |       HTHIS HIDENTIFIER
 -              |       HNEW
 -                      HIDENTIFIER
 -                      ARG_R_PT
 -              |       EXPRESSION_SIMP
 -                      HDOT
 -                      EXPRESSION_SIMP
 -              |       EXPRESSION_SIMP
 -                      HQUA HIDENTIFIER
 -              ;
 +                |       HIF
 +                        EXPRESSION
 +                        HTHEN
 +                        EXPRESSION
 +                        HELSE
 +                        EXPRESSION
 +                ;
 +EXPRESSION_SIMP :       EXPRESSION_SIMP
 +                        HASSIGN
 +                        EXPRESSION
 +                |
 +
 +                        EXPRESSION_SIMP
 +                        HCONC
 +                        EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP HOR
 +                        HELSE
 +                        EXPRESSION_SIMP
 +                        %prec HORELSE
 +                |       EXPRESSION_SIMP HAND
 +                        HTHEN
 +                        EXPRESSION_SIMP
 +                        %prec HANDTHEN
 +                |       EXPRESSION_SIMP
 +                        HEQV EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HIMP EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HOR EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HAND EXPRESSION_SIMP
 +                |       HNOT EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HVALRELOPERATOR
 +                        EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HREFRELOPERATOR
 +                        EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HOBJRELOPERATOR
 +                        EXPRESSION_SIMP
 +                |       HTERMOPERATOR
 +                        EXPRESSION_SIMP %prec UNEAR
 +                |       EXPRESSION_SIMP
 +                        HTERMOPERATOR
 +                        EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HFACTOROPERATOR
 +                        EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HPRIMARYOPERATOR
 +                        EXPRESSION_SIMP
 +                |       HBEGPAR
 +                        EXPRESSION HENDPAR
 +                |       HTEXTKONST
 +                |       HCHARACTERKONST
 +                |       HREALKONST
 +                |       HINTEGERKONST
 +                |       HBOOLEANKONST
 +                |       HNONE
 +                |       HIDENTIFIER
 +                                {}
 +                        MBEE_ARG_R_PT
 +                |       HTHIS HIDENTIFIER
 +                |       HNEW
 +                        HIDENTIFIER
 +                        ARG_R_PT
 +                |       EXPRESSION_SIMP
 +                        HDOT
 +                        EXPRESSION_SIMP
 +                |       EXPRESSION_SIMP
 +                        HQUA HIDENTIFIER
 +                ;
  ARG_R_PT        :       /*EMPTY*/
 -              |       HBEGPAR
 -                      ARGUMENT_LIST HENDPAR
 -              ;
 +                |       HBEGPAR
 +                        ARGUMENT_LIST HENDPAR
 +                ;
  MBEE_ARG_R_PT   :       /*EMPTY*/
 -              |       HBEGPAR
 -                      ARGUMENT_LIST HENDPAR
 -              ;
 +                |       HBEGPAR
 +                        ARGUMENT_LIST HENDPAR
 +                ;
  ARGUMENT_LIST   :       EXPRESSION
 -              |       EXPRESSION
 -                      HPAREXPSEPARATOR
 -                      ARGUMENT_LIST
 -              ;
 +                |       EXPRESSION
 +                        HPAREXPSEPARATOR
 +                        ARGUMENT_LIST
 +                ;
  ]],
  
  dnl INPUT
  
  dnl BISON-STDERR
  [AT_COND_CASE([[canonical LR]],
 -[[input.y: conflicts: 1876 shift/reduce, 144 reduce/reduce]],
 -[[input.y: conflicts: 78 shift/reduce, 10 reduce/reduce]])[
 +[[input.y: warning: 1876 shift/reduce conflicts [-Wconflicts-sr]
 +input.y: warning: 144 reduce/reduce conflicts [-Wconflicts-rr]]],
 +[[input.y: warning: 78 shift/reduce conflicts [-Wconflicts-sr]
 +input.y: warning: 10 reduce/reduce conflicts [-Wconflicts-rr]]])[
  ]],
  
  dnl LAST-STATE
@@@ -1572,367 -1570,367 +1572,367 @@@ works *
  ]],
  [[
  top:
 -      optional_separator
 -      | element_list
 -      ;
 +        optional_separator
 +        | element_list
 +        ;
  
  element_list:
 -      optional_separator middle_element_list optional_separator
 -      ;
 +        optional_separator middle_element_list optional_separator
 +        ;
  
  middle_element_list:
 -      element
 -      | middle_element_list separator element
 -      ;
 +        element
 +        | middle_element_list separator element
 +        ;
  
  optional_separator:
 -      /* empty */
 -      | separator
 -      ;
 +        /* empty */
 +        | separator
 +        ;
  
  separator:
 -      ';'
 -      | separator ';'
 -      ;
 +        ';'
 +        | separator ';'
 +        ;
  
  placeless_element:
 -      VARIABLE '=' any_expr
 -      | VARIABLE ':' '=' any_expr
 -      | UP
 -      | DOWN
 -      | LEFT
 -      | RIGHT
 -      | COMMAND_LINE
 -      | COMMAND print_args
 -      | PRINT print_args
 -      | SH
 -              {}
 -        DELIMITED
 -      | COPY TEXT
 -      | COPY TEXT THROUGH
 -              {}
 -        DELIMITED
 -              {}
 -        until
 -      | COPY THROUGH
 -              {}
 -        DELIMITED
 -              {}
 -        until
 -      | FOR VARIABLE '=' expr TO expr optional_by DO
 -              {}
 -        DELIMITED
 -      | simple_if
 -      | simple_if ELSE
 -              {}
 -        DELIMITED
 -      | reset_variables
 -      | RESET
 -      ;
 +        VARIABLE '=' any_expr
 +        | VARIABLE ':' '=' any_expr
 +        | UP
 +        | DOWN
 +        | LEFT
 +        | RIGHT
 +        | COMMAND_LINE
 +        | COMMAND print_args
 +        | PRINT print_args
 +        | SH
 +                {}
 +          DELIMITED
 +        | COPY TEXT
 +        | COPY TEXT THROUGH
 +                {}
 +          DELIMITED
 +                {}
 +          until
 +        | COPY THROUGH
 +                {}
 +          DELIMITED
 +                {}
 +          until
 +        | FOR VARIABLE '=' expr TO expr optional_by DO
 +                {}
 +          DELIMITED
 +        | simple_if
 +        | simple_if ELSE
 +                {}
 +          DELIMITED
 +        | reset_variables
 +        | RESET
 +        ;
  
  reset_variables:
 -      RESET VARIABLE
 -      | reset_variables VARIABLE
 -      | reset_variables ',' VARIABLE
 -      ;
 +        RESET VARIABLE
 +        | reset_variables VARIABLE
 +        | reset_variables ',' VARIABLE
 +        ;
  
  print_args:
 -      print_arg
 -      | print_args print_arg
 -      ;
 +        print_arg
 +        | print_args print_arg
 +        ;
  
  print_arg:
 -      expr                                                    %prec ','
 -      | text
 -      | position                                              %prec ','
 -      ;
 +        expr                                                    %prec ','
 +        | text
 +        | position                                              %prec ','
 +        ;
  
  simple_if:
 -      IF any_expr THEN
 -              {}
 -      DELIMITED
 -      ;
 +        IF any_expr THEN
 +                {}
 +        DELIMITED
 +        ;
  
  until:
 -      /* empty */
 -      | UNTIL TEXT
 -      ;
 +        /* empty */
 +        | UNTIL TEXT
 +        ;
  
  any_expr:
 -      expr
 -      | text_expr
 -      ;
 +        expr
 +        | text_expr
 +        ;
  
  text_expr:
 -      text EQUALEQUAL text
 -      | text NOTEQUAL text
 -      | text_expr ANDAND text_expr
 -      | text_expr ANDAND expr
 -      | expr ANDAND text_expr
 -      | text_expr OROR text_expr
 -      | text_expr OROR expr
 -      | expr OROR text_expr
 -      | '!' text_expr
 -      ;
 +        text EQUALEQUAL text
 +        | text NOTEQUAL text
 +        | text_expr ANDAND text_expr
 +        | text_expr ANDAND expr
 +        | expr ANDAND text_expr
 +        | text_expr OROR text_expr
 +        | text_expr OROR expr
 +        | expr OROR text_expr
 +        | '!' text_expr
 +        ;
  
  optional_by:
 -      /* empty */
 -      | BY expr
 -      | BY '*' expr
 -      ;
 +        /* empty */
 +        | BY expr
 +        | BY '*' expr
 +        ;
  
  element:
 -      object_spec
 -      | LABEL ':' optional_separator element
 -      | LABEL ':' optional_separator position_not_place
 -      | LABEL ':' optional_separator place
 -      | '{' {} element_list '}'
 -              {}
 -        optional_element
 -      | placeless_element
 -      ;
 +        object_spec
 +        | LABEL ':' optional_separator element
 +        | LABEL ':' optional_separator position_not_place
 +        | LABEL ':' optional_separator place
 +        | '{' {} element_list '}'
 +                {}
 +          optional_element
 +        | placeless_element
 +        ;
  
  optional_element:
 -      /* empty */
 -      | element
 -      ;
 +        /* empty */
 +        | element
 +        ;
  
  object_spec:
 -      BOX
 -      | CIRCLE
 -      | ELLIPSE
 -      | ARC
 -      | LINE
 -      | ARROW
 -      | MOVE
 -      | SPLINE
 -      | text                                                  %prec TEXT
 -      | PLOT expr
 -      | PLOT expr text
 -      | '['
 -              {}
 -        element_list ']'
 -      | object_spec HEIGHT expr
 -      | object_spec RADIUS expr
 -      | object_spec WIDTH expr
 -      | object_spec DIAMETER expr
 -      | object_spec expr                                      %prec HEIGHT
 -      | object_spec UP
 -      | object_spec UP expr
 -      | object_spec DOWN
 -      | object_spec DOWN expr
 -      | object_spec RIGHT
 -      | object_spec RIGHT expr
 -      | object_spec LEFT
 -      | object_spec LEFT expr
 -      | object_spec FROM position
 -      | object_spec TO position
 -      | object_spec AT position
 -      | object_spec WITH path
 -      | object_spec WITH position                             %prec ','
 -      | object_spec BY expr_pair
 -      | object_spec THEN
 -      | object_spec SOLID
 -      | object_spec DOTTED
 -      | object_spec DOTTED expr
 -      | object_spec DASHED
 -      | object_spec DASHED expr
 -      | object_spec FILL
 -      | object_spec FILL expr
 -      | object_spec SHADED text
 -      | object_spec COLORED text
 -      | object_spec OUTLINED text
 -      | object_spec CHOP
 -      | object_spec CHOP expr
 -      | object_spec SAME
 -      | object_spec INVISIBLE
 -      | object_spec LEFT_ARROW_HEAD
 -      | object_spec RIGHT_ARROW_HEAD
 -      | object_spec DOUBLE_ARROW_HEAD
 -      | object_spec CW
 -      | object_spec CCW
 -      | object_spec text                                      %prec TEXT
 -      | object_spec LJUST
 -      | object_spec RJUST
 -      | object_spec ABOVE
 -      | object_spec BELOW
 -      | object_spec THICKNESS expr
 -      | object_spec ALIGNED
 -      ;
 +        BOX
 +        | CIRCLE
 +        | ELLIPSE
 +        | ARC
 +        | LINE
 +        | ARROW
 +        | MOVE
 +        | SPLINE
 +        | text                                                  %prec TEXT
 +        | PLOT expr
 +        | PLOT expr text
 +        | '['
 +                {}
 +          element_list ']'
 +        | object_spec HEIGHT expr
 +        | object_spec RADIUS expr
 +        | object_spec WIDTH expr
 +        | object_spec DIAMETER expr
 +        | object_spec expr                                      %prec HEIGHT
 +        | object_spec UP
 +        | object_spec UP expr
 +        | object_spec DOWN
 +        | object_spec DOWN expr
 +        | object_spec RIGHT
 +        | object_spec RIGHT expr
 +        | object_spec LEFT
 +        | object_spec LEFT expr
 +        | object_spec FROM position
 +        | object_spec TO position
 +        | object_spec AT position
 +        | object_spec WITH path
 +        | object_spec WITH position                             %prec ','
 +        | object_spec BY expr_pair
 +        | object_spec THEN
 +        | object_spec SOLID
 +        | object_spec DOTTED
 +        | object_spec DOTTED expr
 +        | object_spec DASHED
 +        | object_spec DASHED expr
 +        | object_spec FILL
 +        | object_spec FILL expr
 +        | object_spec SHADED text
 +        | object_spec COLORED text
 +        | object_spec OUTLINED text
 +        | object_spec CHOP
 +        | object_spec CHOP expr
 +        | object_spec SAME
 +        | object_spec INVISIBLE
 +        | object_spec LEFT_ARROW_HEAD
 +        | object_spec RIGHT_ARROW_HEAD
 +        | object_spec DOUBLE_ARROW_HEAD
 +        | object_spec CW
 +        | object_spec CCW
 +        | object_spec text                                      %prec TEXT
 +        | object_spec LJUST
 +        | object_spec RJUST
 +        | object_spec ABOVE
 +        | object_spec BELOW
 +        | object_spec THICKNESS expr
 +        | object_spec ALIGNED
 +        ;
  
  text:
 -      TEXT
 -      | SPRINTF '(' TEXT sprintf_args ')'
 -      ;
 +        TEXT
 +        | SPRINTF '(' TEXT sprintf_args ')'
 +        ;
  
  sprintf_args:
 -      /* empty */
 -      | sprintf_args ',' expr
 -      ;
 +        /* empty */
 +        | sprintf_args ',' expr
 +        ;
  
  position:
 -      position_not_place
 -      | place
 -      ;
 +        position_not_place
 +        | place
 +        ;
  
  position_not_place:
 -      expr_pair
 -      | position '+' expr_pair
 -      | position '-' expr_pair
 -      | '(' position ',' position ')'
 -      | expr between position AND position
 -      | expr '<' position ',' position '>'
 -      ;
 +        expr_pair
 +        | position '+' expr_pair
 +        | position '-' expr_pair
 +        | '(' position ',' position ')'
 +        | expr between position AND position
 +        | expr '<' position ',' position '>'
 +        ;
  
  between:
 -      BETWEEN
 -      | OF THE WAY BETWEEN
 -      ;
 +        BETWEEN
 +        | OF THE WAY BETWEEN
 +        ;
  
  expr_pair:
 -      expr ',' expr
 -      | '(' expr_pair ')'
 -      ;
 +        expr ',' expr
 +        | '(' expr_pair ')'
 +        ;
  
  place:
 -      /* line at A left == line (at A) left */
 -      label                                                   %prec CHOP
 -      | label corner
 -      | corner label
 -      | corner OF label
 -      | HERE
 -      ;
 +        /* line at A left == line (at A) left */
 +        label                                                   %prec CHOP
 +        | label corner
 +        | corner label
 +        | corner OF label
 +        | HERE
 +        ;
  
  label:
 -      LABEL
 -      | nth_primitive
 -      | label '.' LABEL
 -      ;
 +        LABEL
 +        | nth_primitive
 +        | label '.' LABEL
 +        ;
  
  ordinal:
 -      ORDINAL
 -      | '`' any_expr TH
 -      ;
 +        ORDINAL
 +        | '`' any_expr TH
 +        ;
  
  optional_ordinal_last:
 -      LAST
 -      | ordinal LAST
 -      ;
 +        LAST
 +        | ordinal LAST
 +        ;
  
  nth_primitive:
 -      ordinal object_type
 -      | optional_ordinal_last object_type
 -      ;
 +        ordinal object_type
 +        | optional_ordinal_last object_type
 +        ;
  
  object_type:
 -      BOX
 -      | CIRCLE
 -      | ELLIPSE
 -      | ARC
 -      | LINE
 -      | ARROW
 -      | SPLINE
 -      | '[' ']'
 -      | TEXT
 -      ;
 +        BOX
 +        | CIRCLE
 +        | ELLIPSE
 +        | ARC
 +        | LINE
 +        | ARROW
 +        | SPLINE
 +        | '[' ']'
 +        | TEXT
 +        ;
  
  label_path:
 -      '.' LABEL
 -      | label_path '.' LABEL
 -      ;
 +        '.' LABEL
 +        | label_path '.' LABEL
 +        ;
  
  relative_path:
 -      corner                                                  %prec CHOP
 -      /* give this a lower precedence than LEFT and RIGHT so that
 -         [A: box] with .A left == [A: box] with (.A left) */
 -      | label_path                                            %prec TEXT
 -      | label_path corner
 -      ;
 +        corner                                                  %prec CHOP
 +        /* give this a lower precedence than LEFT and RIGHT so that
 +           [A: box] with .A left == [A: box] with (.A left) */
 +        | label_path                                            %prec TEXT
 +        | label_path corner
 +        ;
  
  path:
 -      relative_path
 -      | '(' relative_path ',' relative_path ')'
 -              {}
 -      /* The rest of these rules are a compatibility sop. */
 -      | ORDINAL LAST object_type relative_path
 -      | LAST object_type relative_path
 -      | ORDINAL object_type relative_path
 -      | LABEL relative_path
 -      ;
 +        relative_path
 +        | '(' relative_path ',' relative_path ')'
 +                {}
 +        /* The rest of these rules are a compatibility sop. */
 +        | ORDINAL LAST object_type relative_path
 +        | LAST object_type relative_path
 +        | ORDINAL object_type relative_path
 +        | LABEL relative_path
 +        ;
  
  corner:
 -      DOT_N
 -      | DOT_E
 -      | DOT_W
 -      | DOT_S
 -      | DOT_NE
 -      | DOT_SE
 -      | DOT_NW
 -      | DOT_SW
 -      | DOT_C
 -      | DOT_START
 -      | DOT_END
 -      | TOP
 -      | BOTTOM
 -      | LEFT
 -      | RIGHT
 -      | UPPER LEFT
 -      | LOWER LEFT
 -      | UPPER RIGHT
 -      | LOWER RIGHT
 -      | LEFT_CORNER
 -      | RIGHT_CORNER
 -      | UPPER LEFT_CORNER
 -      | LOWER LEFT_CORNER
 -      | UPPER RIGHT_CORNER
 -      | LOWER RIGHT_CORNER
 -      | NORTH
 -      | SOUTH
 -      | EAST
 -      | WEST
 -      | CENTER
 -      | START
 -      | END
 -      ;
 +        DOT_N
 +        | DOT_E
 +        | DOT_W
 +        | DOT_S
 +        | DOT_NE
 +        | DOT_SE
 +        | DOT_NW
 +        | DOT_SW
 +        | DOT_C
 +        | DOT_START
 +        | DOT_END
 +        | TOP
 +        | BOTTOM
 +        | LEFT
 +        | RIGHT
 +        | UPPER LEFT
 +        | LOWER LEFT
 +        | UPPER RIGHT
 +        | LOWER RIGHT
 +        | LEFT_CORNER
 +        | RIGHT_CORNER
 +        | UPPER LEFT_CORNER
 +        | LOWER LEFT_CORNER
 +        | UPPER RIGHT_CORNER
 +        | LOWER RIGHT_CORNER
 +        | NORTH
 +        | SOUTH
 +        | EAST
 +        | WEST
 +        | CENTER
 +        | START
 +        | END
 +        ;
  
  expr:
 -      VARIABLE
 -      | NUMBER
 -      | place DOT_X
 -      | place DOT_Y
 -      | place DOT_HT
 -      | place DOT_WID
 -      | place DOT_RAD
 -      | expr '+' expr
 -      | expr '-' expr
 -      | expr '*' expr
 -      | expr '/' expr
 -      | expr '%' expr
 -      | expr '^' expr
 -      | '-' expr                                              %prec '!'
 -      | '(' any_expr ')'
 -      | SIN '(' any_expr ')'
 -      | COS '(' any_expr ')'
 -      | ATAN2 '(' any_expr ',' any_expr ')'
 -      | LOG '(' any_expr ')'
 -      | EXP '(' any_expr ')'
 -      | SQRT '(' any_expr ')'
 -      | K_MAX '(' any_expr ',' any_expr ')'
 -      | K_MIN '(' any_expr ',' any_expr ')'
 -      | INT '(' any_expr ')'
 -      | RAND '(' any_expr ')'
 -      | RAND '(' ')'
 -      | SRAND '(' any_expr ')'
 -      | expr '<' expr
 -      | expr LESSEQUAL expr
 -      | expr '>' expr
 -      | expr GREATEREQUAL expr
 -      | expr EQUALEQUAL expr
 -      | expr NOTEQUAL expr
 -      | expr ANDAND expr
 -      | expr OROR expr
 -      | '!' expr
 -      ;
 +        VARIABLE
 +        | NUMBER
 +        | place DOT_X
 +        | place DOT_Y
 +        | place DOT_HT
 +        | place DOT_WID
 +        | place DOT_RAD
 +        | expr '+' expr
 +        | expr '-' expr
 +        | expr '*' expr
 +        | expr '/' expr
 +        | expr '%' expr
 +        | expr '^' expr
 +        | '-' expr                                              %prec '!'
 +        | '(' any_expr ')'
 +        | SIN '(' any_expr ')'
 +        | COS '(' any_expr ')'
 +        | ATAN2 '(' any_expr ',' any_expr ')'
 +        | LOG '(' any_expr ')'
 +        | EXP '(' any_expr ')'
 +        | SQRT '(' any_expr ')'
 +        | K_MAX '(' any_expr ',' any_expr ')'
 +        | K_MIN '(' any_expr ',' any_expr ')'
 +        | INT '(' any_expr ')'
 +        | RAND '(' any_expr ')'
 +        | RAND '(' ')'
 +        | SRAND '(' any_expr ')'
 +        | expr '<' expr
 +        | expr LESSEQUAL expr
 +        | expr '>' expr
 +        | expr GREATEREQUAL expr
 +        | expr EQUALEQUAL expr
 +        | expr NOTEQUAL expr
 +        | expr ANDAND expr
 +        | expr OROR expr
 +        | '!' expr
 +        ;
  ]],
  
  dnl INPUT
@@@ -1953,7 -1951,7 +1953,7 @@@ dnl without being followed by "of".
  [[VARIABLE, '=', LABEL, LEFT, DOT_X]],
  
  dnl BISON-STDERR
 -[[input.y:470.11-48: warning: rule useless in parser due to conflicts: path: ORDINAL LAST object_type relative_path
 +[[input.y:470.11-48: warning: rule useless in parser due to conflicts: path: ORDINAL LAST object_type relative_path [-Wother]
  ]],
  
  dnl LAST-STATE
@@@ -2042,7 -2040,7 +2042,7 @@@ dnl   - 383 -> 42
       nth_primitive          go to state 105
  @@ -3256,7 +3256,7 @@
  
-  state 102
+  State 102
  
  -  146 place: label .  [$end, LABEL, VARIABLE, NUMBER, TEXT, ORDINAL, LEFT_ARROW_HEAD, RIGHT_ARROW_HEAD, DOUBLE_ARROW_HEAD, LAST, UP, DOWN, LEFT, RIGHT, HEIGHT, RADIUS, WIDTH, DIAMETER, FROM, TO, AT, WITH, BY, THEN, SOLID, DOTTED, DASHED, CHOP, SAME, INVISIBLE, LJUST, RJUST, ABOVE, BELOW, AND, HERE, DOT_X, DOT_Y, DOT_HT, DOT_WID, DOT_RAD, SIN, COS, ATAN2, LOG, EXP, SQRT, K_MAX, K_MIN, INT, RAND, SRAND, CW, CCW, THICKNESS, FILL, COLORED, OUTLINED, SHADED, ALIGNED, SPRINTF, '(', '`', ',', '>', '+', '-', '!', ';', '}', '@:>@', ')']
  +  146 place: label .  [$end, LABEL, VARIABLE, NUMBER, TEXT, ORDINAL, LEFT_ARROW_HEAD, RIGHT_ARROW_HEAD, DOUBLE_ARROW_HEAD, LAST, UP, DOWN, LEFT, RIGHT, HEIGHT, RADIUS, WIDTH, DIAMETER, FROM, TO, AT, WITH, BY, THEN, SOLID, DOTTED, DASHED, CHOP, SAME, INVISIBLE, LJUST, RJUST, ABOVE, BELOW, HERE, DOT_X, DOT_Y, DOT_HT, DOT_WID, DOT_RAD, SIN, COS, ATAN2, LOG, EXP, SQRT, K_MAX, K_MIN, INT, RAND, SRAND, CW, CCW, THICKNESS, FILL, COLORED, OUTLINED, SHADED, ALIGNED, SPRINTF, '(', '`', '+', '-', '!', ';', '}', '@:>@']
  +    expr                   go to state 424
  
  
-  state 165
+  State 165
  @@ -7987,7 +7987,7 @@
       text_expr              go to state 112
       text                   go to state 113
  +    between  go to state 425
  
  
-  state 193
+  State 193
  @@ -10152,7 +10152,7 @@
  
       expr_pair              go to state 317
  +    expr                   go to state 424
  
  
-  state 238
+  State 238
  @@ -12937,7 +12937,7 @@
       '!'           shift, and go to state 94
  
  +    expr                   go to state 424
  
  
-  state 315
+  State 315
  @@ -16124,7 +16124,7 @@
  
       $default  reduce using rule 239 (expr)
  +    expr                   go to state 424
  
  
-  state 383
+  State 383
  @@ -18071,7 +18071,7 @@
       '!'           shift, and go to state 94
  
       $default  reduce using rule 29 (placeless_element)
  +
  +
- +state 423
+ +State 423
  +
  +  146 place: label .  [$end, AND, DOT_X, DOT_Y, DOT_HT, DOT_WID, DOT_RAD, ',', '>', '+', '-', ';', '}', '@:>@', ')']
  +  147      | label . corner
  +    corner  go to state 205
  +
  +
- +state 424
+ +State 424
  +
  +  140 position_not_place: expr . between position AND position
  +  141                   | expr . '<' position ',' position '>'
  +    between  go to state 425
  +
  +
- +state 425
+ +State 425
  +
  +  134 position: . position_not_place
  +  135         | . place
  +    expr                   go to state 424
  +
  +
- +state 426
+ +State 426
  +
  +  137 position_not_place: position . '+' expr_pair
  +  138                   | position . '-' expr_pair
  +    '-'  shift, and go to state 198
  +
  +
- +state 427
+ +State 427
  +
  +  134 position: . position_not_place
  +  135         | . place
diff --combined tests/glr-regression.at
index ab6e14378ae77b5b9a1301b939bf8dd533d56f10,6ca021f9661c7be10ac4b8d137235337618f3348..a826a5e30df7b5d3f96c1989c023dc3c87add51f
@@@ -88,8 -88,8 +88,8 @@@ yylex (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr1.c glr-regr1.y]], 0, [],
 -[glr-regr1.y: conflicts: 1 shift/reduce
 -])
 +[[glr-regr1.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
 +]])
  AT_COMPILE([glr-regr1])
  AT_PARSER_CHECK([[./glr-regr1 BPBPB]], 0,
  [[E -> 'B'
@@@ -196,15 -196,19 +196,19 @@@ in
  main (int argc, char **argv)
  {
    input = stdin;
-   if (argc == 2 && !(input = fopen (argv[1], "r"))) return 3;
-   return yyparse ();
+   if (argc == 2 && !(input = fopen (argv[1], "r")))
+     return 3;
+   int res = yyparse ();
+   if (argc == 2 && fclose (input))
+     return 4;
+   return res;
  }
  ]])
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr2a.c glr-regr2a.y]], 0, [],
 -[glr-regr2a.y: conflicts: 2 shift/reduce
 -])
 +[[glr-regr2a.y: warning: 2 shift/reduce conflicts [-Wconflicts-sr]
 +]])
  AT_COMPILE([glr-regr2a])
  
  AT_DATA([input1.txt],
@@@ -324,16 -328,19 +328,20 @@@ in
  main(int argc, char* argv[])
  {
    input = stdin;
-   if (argc == 2 && !(input = fopen (argv[1], "r"))) return 3;
-   return yyparse ();
+   if (argc == 2 && !(input = fopen (argv[1], "r")))
+     return 3;
+   int res = yyparse ();
+   if (argc == 2 && fclose (input))
+     return 4;
+   return res;
  }
  ]])
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr3.c glr-regr3.y]], 0, [],
 -[glr-regr3.y: conflicts: 1 shift/reduce, 1 reduce/reduce
 -])
 +[[glr-regr3.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
 +glr-regr3.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr3])
  
  AT_DATA([input.txt],
@@@ -427,8 -434,8 +435,8 @@@ merge (YYSTYPE s1, YYSTYPE s2
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr4.c glr-regr4.y]], 0, [],
 -[glr-regr4.y: conflicts: 1 reduce/reduce
 -])
 +[[glr-regr4.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr4])
  
  AT_PARSER_CHECK([[./glr-regr4]], 0,
@@@ -487,8 -494,8 +495,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr5.c glr-regr5.y]], 0, [],
 -[glr-regr5.y: conflicts: 1 reduce/reduce
 -])
 +[[glr-regr5.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr5])
  
  AT_PARSER_CHECK([[./glr-regr5]], 0, [],
@@@ -539,8 -546,8 +547,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr6.c glr-regr6.y]], 0, [],
 -[glr-regr6.y: conflicts: 1 reduce/reduce
 -])
 +[[glr-regr6.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr6])
  
  AT_PARSER_CHECK([[./glr-regr6]], 0,
@@@ -628,8 -635,8 +636,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr7.c glr-regr7.y]], 0, [],
 -[glr-regr7.y: conflicts: 2 reduce/reduce
 -])
 +[[glr-regr7.y: warning: 2 reduce/reduce conflicts [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr7])
  
  AT_PARSER_CHECK([[./glr-regr7]], 2, [],
@@@ -722,8 -729,8 +730,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr8.c glr-regr8.y]], 0, [],
 -[glr-regr8.y: conflicts: 1 reduce/reduce
 -])
 +[[glr-regr8.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr8])
  
  AT_PARSER_CHECK([[./glr-regr8]], 0,
@@@ -802,8 -809,8 +810,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr9.c glr-regr9.y]], 0, [],
 -[glr-regr9.y: conflicts: 1 reduce/reduce
 -])
 +[[glr-regr9.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr9])
  
  AT_PARSER_CHECK([[./glr-regr9]], 0, [],
@@@ -858,8 -865,8 +866,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr10.c glr-regr10.y]], 0, [],
 -[glr-regr10.y: conflicts: 1 reduce/reduce
 -])
 +[[glr-regr10.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr10])
  
  AT_PARSER_CHECK([[./glr-regr10]], 0, [], [])
@@@ -916,8 -923,8 +924,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr11.c glr-regr11.y]], 0, [],
 -[glr-regr11.y: conflicts: 1 reduce/reduce
 -])
 +[[glr-regr11.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr11])
  
  AT_PARSER_CHECK([[./glr-regr11]], 0, [], [])
@@@ -1037,9 -1044,8 +1045,9 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr12.c glr-regr12.y]], 0, [],
 -[glr-regr12.y: conflicts: 1 shift/reduce, 1 reduce/reduce
 -])
 +[[glr-regr12.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
 +glr-regr12.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr12])
  
  AT_PARSER_CHECK([[./glr-regr12]], 0, [], [])
@@@ -1368,8 -1374,8 +1376,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr14.c glr-regr14.y]], 0, [],
 -[glr-regr14.y: conflicts: 3 reduce/reduce
 -])
 +[[glr-regr14.y: warning: 3 reduce/reduce conflicts [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr14])
  
  AT_PARSER_CHECK([[./glr-regr14]], 0,
@@@ -1461,8 -1467,8 +1469,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr15.c glr-regr15.y]], 0, [],
 -[glr-regr15.y: conflicts: 2 reduce/reduce
 -])
 +[[glr-regr15.y: warning: 2 reduce/reduce conflicts [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr15])
  
  AT_PARSER_CHECK([[./glr-regr15]], 0, [],
@@@ -1521,8 -1527,8 +1529,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr16.c glr-regr16.y]], 0, [],
 -[glr-regr16.y: conflicts: 1 reduce/reduce
 -])
 +[[glr-regr16.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr16])
  
  AT_PARSER_CHECK([[./glr-regr16]], 0, [],
@@@ -1599,8 -1605,8 +1607,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr17.c glr-regr17.y]], 0, [],
 -[glr-regr17.y: conflicts: 3 reduce/reduce
 -])
 +[[glr-regr17.y: warning: 3 reduce/reduce conflicts [-Wconflicts-rr]
 +]])
  AT_COMPILE([glr-regr17])
  
  AT_PARSER_CHECK([[./glr-regr17]], 0, [],
@@@ -1654,11 -1660,11 +1662,11 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o glr-regr18.c glr-regr18.y]], 1, [],
 -[glr-regr18.y:26.18-24: error: result type clash on merge function 'merge': <type2> != <type1>
 +[[glr-regr18.y:26.18-24: error: result type clash on merge function 'merge': <type2> != <type1>
  glr-regr18.y:25.18-24:     previous declaration
  glr-regr18.y:27.13-19: error: result type clash on merge function 'merge': <type3> != <type2>
  glr-regr18.y:26.18-24:     previous declaration
 -])
 +]])
  
  AT_CLEANUP
  
@@@ -1702,8 -1708,8 +1710,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o input.c input.y]], 0, [],
 -[input.y: conflicts: 1 reduce/reduce
 -])
 +[[input.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
 +]])
  AT_COMPILE([input])
  
  AT_PARSER_CHECK([[./input]], 1, [],
diff --combined tests/local.at
index 42040829a6a57b6ef3dab8820a0edc16ec36666e,efba29dca09d31b770d5c8e1cb6c433e1c5cbd00..e24c0acb7dc7fdccf4ce7bf5f7ea953254fb8ab8
@@@ -109,7 -109,7 +109,7 @@@ m4_define([AT_BISON_OPTION_PUSHDEFS]
  # --------------------------------------------------
  # This macro works around the impossibility to define macros
  # inside macros, because issuing `[$1]' is not possible in M4 :(.
 -# This sucks hard, GNU M4 should really provide M5 like $$1.
 +# This sucks hard, GNU M4 should really provide M5-like $$1.
  m4_define([_AT_BISON_OPTION_PUSHDEFS],
  [m4_if([$1$2], $[1]$[2], [],
         [m4_fatal([$0: Invalid arguments: $@])])dnl
@@@ -142,8 -142,7 +142,8 @@@ m4_pushdef([AT_LOCATION_TYPE_IF]
  m4_pushdef([AT_PARAM_IF],
  [m4_bmatch([$3], [%parse-param], [$1], [$2])])
  # Comma-terminated list of formals parse-parameters.
 -# E.g., %parse-param { int x } {int y} -> "int x, int y, ".
 +# E.g., %parse-param { int x } %parse-param {int y} -> "int x, int y, ".
 +# FIXME: Support grouped parse-param.
  m4_pushdef([AT_PARSE_PARAMS])
  m4_bpatsubst([$3], [%parse-param { *\([^{}]*[^{} ]\) *}],
               [m4_append([AT_PARSE_PARAMS], [\1, ])])
@@@ -160,11 -159,6 +160,11 @@@ m4_pushdef([AT_NAME_PREFIX]
  [m4_bmatch([$3], [\(%define api\.prefix\|%name-prefix\) ".*"],
             [m4_bregexp([$3], [\(%define api\.prefix\|%name-prefix\) "\([^""]*\)"], [\2])],
             [yy])])
 +m4_pushdef([AT_TOKEN_CTOR_IF],
 +[m4_bmatch([$3], [%define api.token.constructor], [$1], [$2])])
 +m4_pushdef([AT_TOKEN_PREFIX],
 +[m4_bmatch([$3], [%define api.token.prefix ".*"],
 +           [m4_bregexp([$3], [%define api.token.prefix "\(.*\)"], [\1])])])
  m4_pushdef([AT_API_prefix],
  [m4_bmatch([$3], [%define api\.prefix ".*"],
             [m4_bregexp([$3], [%define api\.prefix "\([^""]*\)"], [\1])],
@@@ -174,20 -168,20 +174,20 @@@ m4_pushdef([AT_API_PREFIX]
  # yyerror receives the location if %location & %pure & (%glr or %parse-param).
  m4_pushdef([AT_YYERROR_ARG_LOC_IF],
  [AT_GLR_OR_PARAM_IF([AT_PURE_AND_LOC_IF([$1], [$2])],
 -                  [$2])])
 +                    [$2])])
  # yyerror always sees the locations (when activated), except if
  # (yacc & pure & !param).  FIXME: This is wrong.  See the manual.
  m4_pushdef([AT_YYERROR_SEES_LOC_IF],
  [AT_LOCATION_IF([AT_YACC_IF([AT_PURE_IF([AT_PARAM_IF([$1], [$2])],
 -                                      [$1])],
 -                          [$1])],
 -              [$2])])
 +                                        [$1])],
 +                            [$1])],
 +                [$2])])
  
  # The interface is pure: either because %define api.pure, or because we
  # are using the C++ parsers.
  m4_pushdef([AT_PURE_LEX_IF],
  [AT_PURE_IF([$1],
 -          [AT_SKEL_CC_IF([$1], [$2])])])
 +            [AT_SKEL_CC_IF([$1], [$2])])])
  
  m4_pushdef([AT_YYSTYPE],
  [AT_SKEL_CC_IF([AT_NAME_PREFIX[::parser::semantic_type]],
@@@ -201,15 -195,15 +201,15 @@@ AT_PURE_LEX_IF
  [m4_pushdef([AT_LOC], [(*llocp)])
   m4_pushdef([AT_VAL], [(*lvalp)])
   m4_pushdef([AT_YYLEX_FORMALS],
 -          [AT_YYSTYPE *lvalp[]AT_LOCATION_IF([, AT_YYLTYPE *llocp])])
 +            [AT_YYSTYPE *lvalp[]AT_LOCATION_IF([, AT_YYLTYPE *llocp])])
   m4_pushdef([AT_YYLEX_ARGS],
 -          [lvalp[]AT_LOCATION_IF([, llocp])])
 +            [lvalp[]AT_LOCATION_IF([, llocp])])
   m4_pushdef([AT_USE_LEX_ARGS],
 -          [(void) lvalp;AT_LOCATION_IF([(void) llocp])])
 +            [(void) lvalp;AT_LOCATION_IF([(void) llocp])])
   m4_pushdef([AT_YYLEX_PRE_FORMALS],
 -          [AT_YYLEX_FORMALS, ])
 +            [AT_YYLEX_FORMALS, ])
   m4_pushdef([AT_YYLEX_PRE_ARGS],
 -          [AT_YYLEX_ARGS, ])
 +            [AT_YYLEX_ARGS, ])
  ],
  [m4_pushdef([AT_LOC], [[(]AT_NAME_PREFIX[lloc)]])
   m4_pushdef([AT_VAL], [[(]AT_NAME_PREFIX[lval)]])
@@@ -228,8 -222,6 +228,8 @@@ AT_SKEL_CC_IF
      [AT_LOC_PUSHDEF([begin.line], [begin.column], [end.line], [end.column])])],
    [AT_LOC_PUSHDEF([first_line], [first_column], [last_line], [last_column])])
  
 +
 +AT_GLR_IF([AT_KEYWORDS([glr])])
  ])# _AT_BISON_OPTION_PUSHDEFS
  
  
@@@ -251,8 -243,6 +251,8 @@@ m4_popdef([AT_YYERROR_SEES_LOC_IF]
  m4_popdef([AT_YYERROR_ARG_LOC_IF])
  m4_popdef([AT_API_PREFIX])
  m4_popdef([AT_API_prefix])
 +m4_popdef([AT_TOKEN_PREFIX])
 +m4_popdef([AT_TOKEN_CTOR_IF])
  m4_popdef([AT_NAME_PREFIX])
  m4_popdef([AT_GLR_OR_PARAM_IF])
  m4_popdef([AT_PURE_AND_LOC_IF])
@@@ -402,11 -392,13 +402,11 @@@ AT_YYERROR_SEES_LOC_IF([
  }]],
  [c++], [[/* A C++ error reporting function.  */
  void
 -]AT_NAME_PREFIX[::parser::error (const location_type& l, const std::string& m)
 -{
 -  (void) l;
 -  std::cerr << ]AT_LOCATION_IF([l << ": " << ])[m << std::endl;
 +]AT_NAME_PREFIX[::parser::error (]AT_LOCATION_IF([[const location_type& l, ]])[const std::string& m)
 +{  std::cerr << ]AT_LOCATION_IF([l << ": " << ])[m << std::endl;
  }]],
  [java], [AT_LOCATION_IF([[public void yyerror (Calc.Location l, String s)
 -  {
 +{
      if (l == null)
        System.err.println (s);
      else
@@@ -453,6 -445,10 +453,6 @@@ m4_define([AT_BISON_CHECK]
  [m4_null_if([$2], [AT_BISON_CHECK_XML($@)])
  AT_BISON_CHECK_NO_XML($@)])
  
 -m4_define([AT_BISON_WERROR_MSG],
 -          [[bison: warnings being treated as errors]])
 -
 -
  # AT_BISON_CHECK_(BISON_ARGS, [OTHER_AT_CHECK_ARGS])
  # --------------------------------------------------
  # Low-level macro to run bison once.
@@@ -473,7 -469,7 +473,7 @@@ m4_define([AT_BISON_CHECK_WARNINGS_]
  # added after the grammar file name, so skip these checks in that
  # case.
  if test "$POSIXLY_CORRECT_IS_EXPORTED" = false; then
 -  ]AT_SAVE_SPECIAL_FILES[
 +          ]AT_SAVE_SPECIAL_FILES[
  
    # To avoid expanding it repeatedly, store specified stdout.
    ]AT_DATA([expout], [$3])[
  
    # Build expected stderr up to and including the "warnings being
    # treated as errors" message.
 -  ]AT_DATA([[at-bison-check-warnings]], [$4])[
 -  at_bison_check_first=`sed -n \
 -    '/: warning: /{=;q;}' at-bison-check-warnings`
 -  : ${at_bison_check_first:=1}
 -  at_bison_check_first_tmp=`sed -n \
 -    '/conflicts: [0-9].*reduce$/{=;q;}' at-bison-check-warnings`
 -  : ${at_bison_check_first_tmp:=1}
 -  if test $at_bison_check_first_tmp -lt $at_bison_check_first; then
 -    at_bison_check_first=$at_bison_check_first_tmp
 -  fi
 -  if test $at_bison_check_first -gt 1; then
 -    sed -n "1,`expr $at_bison_check_first - 1`"p \
 -      at-bison-check-warnings > experr
 -  fi
 -  echo ']AT_BISON_WERROR_MSG[' >> experr
 -
 -  # Finish building expected stderr and check.  Unlike warnings,
 -  # complaints cause bison to exit early.  Thus, with -Werror, bison
 -  # does not necessarily report all warnings that it does without
 -  # -Werror, but it at least reports one.
 -  at_bison_check_last=`sed -n '$=' stderr`
 -  : ${at_bison_check_last:=1}
 -  at_bison_check_last=`expr $at_bison_check_last - 1`
 -  sed -n "$at_bison_check_first,$at_bison_check_last"p \
 -    at-bison-check-warnings >> experr
 -  ]AT_CHECK([[sed 's,.*/\(]AT_BISON_WERROR_MSG[\)$,\1,' \
 -              stderr 1>&2]], [[0]], [[]], [experr])[
 +  ]AT_DATA([[experr]], [$4])[
 +  $PERL -pi -e 's{(.*): warning: (.*)\[-W(.*)\]$}
 +                 {$][1: error: $][2\@<:@-Werror=$][3@:>@}' experr
 +  ]AT_CHECK([[sed 's,.*/$,,' stderr 1>&2]], [[0]], [[]], [experr])[
  
    # Now check --warnings=error.
    cp stderr experr
@@@ -528,19 -547,19 +528,19 @@@ m4_define([AT_BISON_CHECK_XML]
    # Don't combine these Bison invocations since we want to be sure that
    # --report=all isn't required to get the full XML file.
    AT_BISON_CHECK_([[--report=all --report-file=xml-tests/test.output \
 -                  --graph=xml-tests/test.dot ]]AT_BISON_ARGS,
 -                  [[0]], [ignore], [ignore])
 +             --graph=xml-tests/test.dot ]]AT_BISON_ARGS,
 +           [[0]], [ignore], [ignore])
    AT_BISON_CHECK_([[--xml=xml-tests/test.xml ]]AT_BISON_ARGS,
 -                 [[0]], [ignore], [ignore])
 +           [[0]], [ignore], [ignore])
    m4_popdef([AT_BISON_ARGS])dnl
    [cp xml-tests/test.output expout]
    AT_CHECK([[$XSLTPROC \
               `]]AT_QUELL_VALGRIND[[ bison --print-datadir`/xslt/xml2text.xsl \
               xml-tests/test.xml]], [[0]], [expout])
-   [cp xml-tests/test.dot expout]
+   [sort xml-tests/test.dot > expout]
    AT_CHECK([[$XSLTPROC \
               `]]AT_QUELL_VALGRIND[[ bison --print-datadir`/xslt/xml2dot.xsl \
-              xml-tests/test.xml]], [[0]], [expout])
+              xml-tests/test.xml | sort]], [[0]], [expout])
    [rm -rf xml-tests expout]
    AT_RESTORE_SPECIAL_FILES
  [fi]])
@@@ -583,7 -602,7 +583,7 @@@ AT_CHECK(m4_join([ ]
                    [-o $1],
                    [m4_default([$2], [m4_bpatsubst([$1], [\.o$]).c])],
                    [m4_bmatch([$1], [[.]], [], [$LIBS])]),
 -         0, [ignore], [ignore])])
 +           0, [ignore], [ignore])])
  
  # AT_COMPILE_CXX(OUTPUT, [SOURCES = OUTPUT.cc])
  # ---------------------------------------------
@@@ -602,7 -621,7 +602,7 @@@ AT_CHECK(m4_join([ ]
                   [-o $1],
                   [m4_default([$2], [m4_bpatsubst([$1], [\.o$]).cc])],
                   [m4_bmatch([$1], [[.]], [], [$LIBS])]),
 -       0, [ignore], [ignore])])
 +         0, [ignore], [ignore])])
  
  # AT_JAVA_COMPILE(SOURCES)
  # ------------------------
@@@ -642,23 -661,23 +642,23 @@@ m4_define([AT_FULL_COMPILE]
  [java],
    [AT_BISON_CHECK([-o $1.java $1.y])
     AT_LANG_COMPILE([$1],
 -                   m4_join([ ],
 -                           [$1.java],
 -                           m4_ifval($2, [[$1-$2.java]]),
 +                    m4_join([ ],
 +                            [$1.java],
 +                            m4_ifval($2, [[$1-$2.java]]),
                             m4_ifval($3, [[$1-$3.java]])))],
  [c++],
    [AT_BISON_CHECK([-o $1.cc $1.y])
     AT_LANG_COMPILE([$1],
 -                   m4_join([ ],
 -                           [$1.cc],
 -                           m4_ifval($2, [[$1-$2.cc]]),
 +                     m4_join([ ],
 +                             [$1.cc],
 +                             m4_ifval($2, [[$1-$2.cc]]),
                             m4_ifval($3, [[$1-$3.cc]])))],
  [c],
    [AT_BISON_CHECK([-o $1.c $1.y])
     AT_LANG_COMPILE([$1],
 -                   m4_join([ ],
 -                           [$1.c],
 -                           m4_ifval($2, [[$1-$2.c]]),
 +                  m4_join([ ],
 +                          [$1.c],
 +                          m4_ifval($2, [[$1-$2.c]]),
                             m4_ifval($3, [[$1-$3.c]])))])
  ])
  
@@@ -849,9 -868,9 +849,9 @@@ m4_if(m4_index(m4_quote($3), [no-xml])
                                 [0], [], m4_dquote($7))
  
  m4_if(m4_index(m4_quote($3), [last-state]), -1,
-       [AT_CHECK([[sed -n '/^state 0$/,$p' input.output]], [[0]],
+       [AT_CHECK([[sed -n '/^State 0$/,$p' input.output]], [[0]],
                  m4_dquote($8))],
-       [AT_CHECK([[sed -n 's/^state //p' input.output | tail -1]], [[0]],
+       [AT_CHECK([[sed -n 's/^State //p' input.output | tail -1]], [[0]],
                  m4_dquote($8)[[
  ]])])
  
diff --combined tests/output.at
index 81710245e6b7bfb66679a6e3b8730689c4226315,657903a5b55ca930d543c0fe8cbf35b90b03b5d5..4a8253a32cdd32bce469d129375b03a134e63c90
@@@ -22,91 -22,85 +22,91 @@@ AT_BANNER([[Output file names.]]
  #                 [ADDITIONAL-TESTS], [PRE-TESTS])
  # -----------------------------------------------------------------------------
  m4_define([AT_CHECK_OUTPUT],
 -[AT_SETUP([[Output files: $2 $3 $5]])
 -$7
 -for file in $1 $4; do
 -  case "$file" in
 -    */*) mkdir -p `echo "$file" | sed 's,/.*,,'`;;
 +[AT_SETUP([[Output files: ]$2 $3 $5])[
 +]$7[
 +for file in ]$1 $4[; do
 +  case $file in
 +    */*) mkdir -p `echo "$file" | sed 's,/[^/]*,,'`;;
    esac
  done
 -AT_DATA([$1],
 -[[$2
 +]AT_DATA([$1],
 +[$2[
  %%
  foo: {};
 +]])[
 +
 +]AT_BISON_CHECK([$3 $1 $5], 0)[
 +# Ignore the files non-generated files
 +]AT_CHECK([find . -type f -and -not -path './$1' -and -not -path './testsuite.log' |
 +           sed 's,\./,,' |
 +           sort |
 +           xargs echo],
 +          [], [$4
 +])[
 +]$6[
 +]AT_CLEANUP[
  ]])
  
 -AT_BISON_CHECK([$3 $1 $5], 0)
 -AT_CHECK([ls $4], [], [ignore])
 -$6
 -AT_CLEANUP
 -])
 -
  AT_CHECK_OUTPUT([foo.y], [], [-dv],
 -              [foo.output foo.tab.c foo.tab.h])
 +                [foo.output foo.tab.c foo.tab.h])
  
  # Some versions of Valgrind (at least valgrind-3.6.0.SVN-Debian) report
  # "fgrep: write error: Bad file descriptor" when stdout is closed, so we
  # skip this test group during maintainer-check-valgrind.
  AT_CHECK_OUTPUT([foo.y], [], [-dv],
 -              [foo.output foo.tab.c foo.tab.h],
 -              [>&-], [],
 -              [AT_CHECK([[case "$PREBISON" in *valgrind*) exit 77;; esac]])])
 +                [foo.output foo.tab.c foo.tab.h],
 +                [>&-], [],
 +                [AT_CHECK([[case "$PREBISON" in *valgrind*) exit 77;; esac]])])
  
  AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.c],
 -              [foo.c foo.h foo.output])
 +                [foo.c foo.h foo.output])
  AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.tab.c],
 -              [foo.output foo.tab.c foo.tab.h])
 +                [foo.output foo.tab.c foo.tab.h])
  AT_CHECK_OUTPUT([foo.y], [], [-dv -y],
 -              [y.output y.tab.c y.tab.h])
 +                [y.output y.tab.c y.tab.h])
  AT_CHECK_OUTPUT([foo.y], [], [-dv -b bar],
 -              [bar.output bar.tab.c bar.tab.h])
 +                [bar.output bar.tab.c bar.tab.h])
  AT_CHECK_OUTPUT([foo.y], [], [-dv -g -o foo.c],
 -              [foo.c foo.dot foo.h foo.output])
 +                [foo.c foo.dot foo.h foo.output])
  
  
  AT_CHECK_OUTPUT([foo.y], [%defines %verbose],      [],
 -              [foo.output foo.tab.c foo.tab.h])
 +                [foo.output foo.tab.c foo.tab.h])
  AT_CHECK_OUTPUT([foo.y], [%defines %verbose %yacc],[],
 -              [y.output y.tab.c y.tab.h])
 +                [y.output y.tab.c y.tab.h])
  
  AT_CHECK_OUTPUT([foo.yy], [%defines %verbose %yacc],[],
 -              [y.output y.tab.c y.tab.h])
 +                [y.output y.tab.c y.tab.h])
  
  # Exercise %output and %file-prefix including deprecated '='
  AT_CHECK_OUTPUT([foo.y], [%file-prefix "bar" %defines %verbose],      [],
 -              [bar.output bar.tab.c bar.tab.h])
 -AT_CHECK_OUTPUT([foo.y], [%output="bar.c" %defines %verbose %yacc],[],
 -              [bar.output bar.c bar.h])
 +                [bar.output bar.tab.c bar.tab.h])
 +AT_CHECK_OUTPUT([foo.y], [%output "bar.c" %defines %verbose %yacc],[],
 +                [bar.c bar.h bar.output])
  AT_CHECK_OUTPUT([foo.y],
 -              [%file-prefix="baz" %output "bar.c" %defines %verbose %yacc],
 -              [],
 -              [bar.output bar.c bar.h])
 +                [%file-prefix "baz" %output "bar.c" %defines %verbose %yacc],
 +                [],
 +                [bar.c bar.h bar.output])
  
  
  # Check priorities of extension control.
  AT_CHECK_OUTPUT([foo.yy], [%defines %verbose], [],
 -              [foo.output foo.tab.cc foo.tab.hh])
 +                [foo.output foo.tab.cc foo.tab.hh])
  
  AT_CHECK_OUTPUT([foo.yy], [%defines %verbose ], [-o foo.c],
 -              [foo.c foo.h foo.output])
 +                [foo.c foo.h foo.output])
  
  AT_CHECK_OUTPUT([foo.yy], [],
 -              [--defines=foo.hpp -o foo.c++],
 -              [foo.c++ foo.hpp])
 +                [--defines=foo.hpp -o foo.c++],
 +                [foo.c++ foo.hpp])
  
  AT_CHECK_OUTPUT([foo.yy], [%defines "foo.hpp"],
 -              [-o foo.c++],
 -              [foo.c++ foo.hpp])
 +                [-o foo.c++],
 +                [foo.c++ foo.hpp])
  
  AT_CHECK_OUTPUT([foo.yy], [],
 -              [-o foo.c++ --graph=foo.gph],
 -              [foo.c++ foo.gph])
 +                [-o foo.c++ --graph=foo.gph],
 +                [foo.c++ foo.gph])
  
  
  ## ------------ ##
@@@ -119,36 -113,22 +119,36 @@@ AT_CHECK([grep 'include .subdir/' $1.cc
  AT_CHECK([grep 'include .subdir/' $1.hh], 1, [])
  ])
  
 +AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %verbose], [],
 +                [foo.output foo.tab.cc])
 +
  AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [],
 -              [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh])
 +                [foo.output foo.tab.cc foo.tab.hh stack.hh])
 +
 +AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %verbose %locations], [],
 +                [foo.output foo.tab.cc])
 +
 +AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose %locations], [],
 +                [foo.output foo.tab.cc foo.tab.hh location.hh position.hh stack.hh])
  
  AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [],
 -              [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh],
 -              [], [AT_CHECK_NO_SUBDIR_PART([foo.tab])])
 +                [foo.output foo.tab.cc foo.tab.hh stack.hh],
 +                [], [AT_CHECK_NO_SUBDIR_PART([foo.tab])])
  
 -AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose],
 -              [-o subdir/foo.cc],
 -              [subdir/foo.cc subdir/foo.hh subdir/foo.output subdir/location.hh subdir/stack.hh subdir/position.hh],
 -              [], [AT_CHECK_NO_SUBDIR_PART([subdir/foo])])
 +AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose %locations],
 +                [-o subdir/foo.cc],
 +                [subdir/foo.cc subdir/foo.hh subdir/foo.output subdir/location.hh subdir/position.hh subdir/stack.hh],
 +                [], [AT_CHECK_NO_SUBDIR_PART([subdir/foo])])
  
  AT_CHECK_OUTPUT([gram_dir/foo.yy],
                  [%skeleton "lalr1.cc" %defines %verbose %file-prefix "output_dir/foo"],
                  [],
 -              [output_dir/foo.tab.cc output_dir/foo.tab.hh output_dir/foo.output output_dir/location.hh output_dir/stack.hh output_dir/position.hh])
 +                [output_dir/foo.output output_dir/foo.tab.cc output_dir/foo.tab.hh output_dir/stack.hh])
 +
 +AT_CHECK_OUTPUT([gram_dir/foo.yy],
 +                [%skeleton "lalr1.cc" %defines %locations %verbose %file-prefix "output_dir/foo"],
 +                [],
 +                [output_dir/foo.output output_dir/foo.tab.cc output_dir/foo.tab.hh output_dir/location.hh output_dir/position.hh output_dir/stack.hh])
  
  
  # AT_CHECK_CONFLICTING_OUTPUT(INPUT-FILE, DIRECTIVES, FLAGS, STDERR,
@@@ -177,22 -157,22 +177,22 @@@ AT_CLEANU
  
  AT_CHECK_CONFLICTING_OUTPUT([foo.y],
  [], [--graph="foo.tab.c"],
 -[foo.y: warning: conflicting outputs to file 'foo.tab.c'
 -])
 +[[foo.y: warning: conflicting outputs to file 'foo.tab.c' [-Wother]
 +]])
  
  AT_CHECK_CONFLICTING_OUTPUT([foo.y],
  [%defines "foo.output"], [-v],
 -[foo.y: warning: conflicting outputs to file 'foo.output'
 -])
 +[[foo.y: warning: conflicting outputs to file 'foo.output' [-Wother]
 +]])
  
  AT_CHECK_CONFLICTING_OUTPUT([foo.y],
 -[%skeleton "lalr1.cc" %defines], [--graph="location.hh"],
 -[foo.y: warning: conflicting outputs to file 'location.hh'
 -])
 +[%skeleton "lalr1.cc" %defines %locations], [--graph="location.hh"],
 +[[foo.y: warning: conflicting outputs to file 'location.hh' [-Wother]
 +]])
  
  AT_CHECK_CONFLICTING_OUTPUT([foo.y], [], [-o foo.y],
 -[foo.y: error: refusing to overwrite the input file 'foo.y'
 -], 1)
 +[[foo.y: error: refusing to overwrite the input file 'foo.y'
 +]], 1)
  
  
  # AT_CHECK_OUTPUT_FILE_NAME(FILE-NAME-PREFIX, [ADDITIONAL-TESTS])
@@@ -284,27 -264,27 +284,27 @@@ a: 
  b: 'b';
  ]],
  [[
-   0 [label="State 0\n  0 $accept: . exp $end\l  1 exp: . a '?' b\l  2 a: .\l"]
-   0 -> "0R2e" [style = solid]
-  "0R2e" [style = filled, shape = diamond, fillcolor = 3, label = "R2"]
+   0 [label="State 0\n\l  0 $accept: . exp $end\l  1 exp: . a '?' b\l  2 a: .\l"]
    0 -> 1 [style=dashed label="exp"]
    0 -> 2 [style=dashed label="a"]
-   1 [label="State 1\n  0 $accept: exp . $end\l"]
+   0 -> "0R2" [style=solid]
+  "0R2" [label="R2", fillcolor=3, shape=diamond, style=filled]
+   1 [label="State 1\n\l  0 $accept: exp . $end\l"]
    1 -> 3 [style=solid label="$end"]
-   2 [label="State 2\n  1 exp: a . '?' b\l"]
+   2 [label="State 2\n\l  1 exp: a . '?' b\l"]
    2 -> 4 [style=solid label="'?'"]
-   3 [label="State 3\n  0 $accept: exp $end .\l"]
-   3 -> "3R0e" [style = solid]
-  "3R0e" [style = filled, shape = diamond, fillcolor = 1, label = "Acc"]
-   4 [label="State 4\n  1 exp: a '?' . b\l  3 b: . 'b'\l"]
+   3 [label="State 3\n\l  0 $accept: exp $end .\l"]
+   3 -> "3R0" [style=solid]
+  "3R0" [label="Acc", fillcolor=1, shape=diamond, style=filled]
+   4 [label="State 4\n\l  1 exp: a '?' . b\l  3 b: . 'b'\l"]
    4 -> 5 [style=solid label="'b'"]
    4 -> 6 [style=dashed label="b"]
-   5 [label="State 5\n  3 b: 'b' .\l"]
-   5 -> "5R3e" [style = solid]
-  "5R3e" [style = filled, shape = diamond, fillcolor = 3, label = "R3"]
-   6 [label="State 6\n  1 exp: a '?' b .\l"]
-   6 -> "6R1e" [style = solid]
-  "6R1e" [style = filled, shape = diamond, fillcolor = 3, label = "R1"]
+   5 [label="State 5\n\l  3 b: 'b' .\l"]
+   5 -> "5R3" [style=solid]
+  "5R3" [label="R3", fillcolor=3, shape=diamond, style=filled]
+   6 [label="State 6\n\l  1 exp: a '?' b .\l"]
+   6 -> "6R1" [style=solid]
+  "6R1" [label="R1", fillcolor=3, shape=diamond, style=filled]
  ]])
  
  ## ------------------------ ##
@@@ -326,13 -306,7 +326,7 @@@ empty_b: %prec 'b'
  empty_c: %prec 'c';
  ]],
  [[
-   0 [label="State 0\n  0 $accept: . start $end\l  1 start: . 'a'\l  2      | . empty_a 'a'\l  3      | . 'b'\l  4      | . empty_b 'b'\l  5      | . 'c'\l  6      | . empty_c 'c'\l  7 empty_a: .  ['a']\l  8 empty_b: .  ['b']\l  9 empty_c: .  ['c']\l"]
-   0 -> "0R7d" [label = "['a']" style = solid]
-  "0R7d" [style = filled, shape = diamond, fillcolor = 5, label = "R7"]
-   0 -> "0R8d" [label = "['b']" style = solid]
-  "0R8d" [style = filled, shape = diamond, fillcolor = 5, label = "R8"]
-   0 -> "0R9d" [label = "['c']" style = solid]
-  "0R9d" [style = filled, shape = diamond, fillcolor = 5, label = "R9"]
+   0 [label="State 0\n\l  0 $accept: . start $end\l  1 start: . 'a'\l  2      | . empty_a 'a'\l  3      | . 'b'\l  4      | . empty_b 'b'\l  5      | . 'c'\l  6      | . empty_c 'c'\l  7 empty_a: .  ['a']\l  8 empty_b: .  ['b']\l  9 empty_c: .  ['c']\l"]
    0 -> 1 [style=solid label="'a'"]
    0 -> 2 [style=solid label="'b'"]
    0 -> 3 [style=solid label="'c'"]
    0 -> 5 [style=dashed label="empty_a"]
    0 -> 6 [style=dashed label="empty_b"]
    0 -> 7 [style=dashed label="empty_c"]
-   1 [label="State 1\n  1 start: 'a' .\l"]
-   1 -> "1R1e" [style = solid]
-  "1R1e" [style = filled, shape = diamond, fillcolor = 3, label = "R1"]
-   2 [label="State 2\n  3 start: 'b' .\l"]
-   2 -> "2R3e" [style = solid]
-  "2R3e" [style = filled, shape = diamond, fillcolor = 3, label = "R3"]
-   3 [label="State 3\n  5 start: 'c' .\l"]
-   3 -> "3R5e" [style = solid]
-  "3R5e" [style = filled, shape = diamond, fillcolor = 3, label = "R5"]
-   4 [label="State 4\n  0 $accept: start . $end\l"]
+   0 -> "0R7d" [label="['a']", style=solid]
+  "0R7d" [label="R7", fillcolor=5, shape=diamond, style=filled]
+   0 -> "0R8d" [label="['b']", style=solid]
+  "0R8d" [label="R8", fillcolor=5, shape=diamond, style=filled]
+   0 -> "0R9d" [label="['c']", style=solid]
+  "0R9d" [label="R9", fillcolor=5, shape=diamond, style=filled]
+   1 [label="State 1\n\l  1 start: 'a' .\l"]
+   1 -> "1R1" [style=solid]
+  "1R1" [label="R1", fillcolor=3, shape=diamond, style=filled]
+   2 [label="State 2\n\l  3 start: 'b' .\l"]
+   2 -> "2R3" [style=solid]
+  "2R3" [label="R3", fillcolor=3, shape=diamond, style=filled]
+   3 [label="State 3\n\l  5 start: 'c' .\l"]
+   3 -> "3R5" [style=solid]
+  "3R5" [label="R5", fillcolor=3, shape=diamond, style=filled]
+   4 [label="State 4\n\l  0 $accept: start . $end\l"]
    4 -> 8 [style=solid label="$end"]
-   5 [label="State 5\n  2 start: empty_a . 'a'\l"]
+   5 [label="State 5\n\l  2 start: empty_a . 'a'\l"]
    5 -> 9 [style=solid label="'a'"]
-   6 [label="State 6\n  4 start: empty_b . 'b'\l"]
+   6 [label="State 6\n\l  4 start: empty_b . 'b'\l"]
    6 -> 10 [style=solid label="'b'"]
-   7 [label="State 7\n  6 start: empty_c . 'c'\l"]
+   7 [label="State 7\n\l  6 start: empty_c . 'c'\l"]
    7 -> 11 [style=solid label="'c'"]
-   8 [label="State 8\n  0 $accept: start $end .\l"]
-   8 -> "8R0e" [style = solid]
-  "8R0e" [style = filled, shape = diamond, fillcolor = 1, label = "Acc"]
-   9 [label="State 9\n  2 start: empty_a 'a' .\l"]
-   9 -> "9R2e" [style = solid]
-  "9R2e" [style = filled, shape = diamond, fillcolor = 3, label = "R2"]
-   10 [label="State 10\n  4 start: empty_b 'b' .\l"]
-   10 -> "10R4e" [style = solid]
-  "10R4e" [style = filled, shape = diamond, fillcolor = 3, label = "R4"]
-   11 [label="State 11\n  6 start: empty_c 'c' .\l"]
-   11 -> "11R6e" [style = solid]
-  "11R6e" [style = filled, shape = diamond, fillcolor = 3, label = "R6"]
+   8 [label="State 8\n\l  0 $accept: start $end .\l"]
+   8 -> "8R0" [style=solid]
+  "8R0" [label="Acc", fillcolor=1, shape=diamond, style=filled]
+   9 [label="State 9\n\l  2 start: empty_a 'a' .\l"]
+   9 -> "9R2" [style=solid]
+  "9R2" [label="R2", fillcolor=3, shape=diamond, style=filled]
+   10 [label="State 10\n\l  4 start: empty_b 'b' .\l"]
+   10 -> "10R4" [style=solid]
+  "10R4" [label="R4", fillcolor=3, shape=diamond, style=filled]
+   11 [label="State 11\n\l  6 start: empty_c 'c' .\l"]
+   11 -> "11R6" [style=solid]
+  "11R6" [label="R6", fillcolor=3, shape=diamond, style=filled]
  ]])
  
  ## ---------------------- ##
@@@ -393,41 -373,41 +393,41 @@@ empty_b: %prec 'b'
  empty_c: %prec 'c';
  ]],
  [[
-   0 [label="State 0\n  0 $accept: . start $end\l  1 start: . 'a'\l  2      | . empty_a 'a'\l  3      | . 'b'\l  4      | . empty_b 'b'\l  5      | . 'c'\l  6      | . empty_c 'c'\l  7 empty_a: .  ['a']\l  8 empty_b: .  []\l  9 empty_c: .  []\l"]
-   0 -> "0R7e" [style = solid]
-  "0R7e" [style = filled, shape = diamond, fillcolor = 3, label = "R7"]
+   0 [label="State 0\n\l  0 $accept: . start $end\l  1 start: . 'a'\l  2      | . empty_a 'a'\l  3      | . 'b'\l  4      | . empty_b 'b'\l  5      | . 'c'\l  6      | . empty_c 'c'\l  7 empty_a: .  ['a']\l  8 empty_b: .  []\l  9 empty_c: .  []\l"]
    0 -> 1 [style=solid label="'b'"]
    0 -> 2 [style=solid label="'c'"]
    0 -> 3 [style=dashed label="start"]
    0 -> 4 [style=dashed label="empty_a"]
    0 -> 5 [style=dashed label="empty_b"]
    0 -> 6 [style=dashed label="empty_c"]
-   1 [label="State 1\n  3 start: 'b' .\l"]
-   1 -> "1R3e" [style = solid]
-  "1R3e" [style = filled, shape = diamond, fillcolor = 3, label = "R3"]
-   2 [label="State 2\n  5 start: 'c' .\l"]
-   2 -> "2R5e" [style = solid]
-  "2R5e" [style = filled, shape = diamond, fillcolor = 3, label = "R5"]
-   3 [label="State 3\n  0 $accept: start . $end\l"]
+   0 -> "0R7" [style=solid]
+  "0R7" [label="R7", fillcolor=3, shape=diamond, style=filled]
+   1 [label="State 1\n\l  3 start: 'b' .\l"]
+   1 -> "1R3" [style=solid]
+  "1R3" [label="R3", fillcolor=3, shape=diamond, style=filled]
+   2 [label="State 2\n\l  5 start: 'c' .\l"]
+   2 -> "2R5" [style=solid]
+  "2R5" [label="R5", fillcolor=3, shape=diamond, style=filled]
+   3 [label="State 3\n\l  0 $accept: start . $end\l"]
    3 -> 7 [style=solid label="$end"]
-   4 [label="State 4\n  2 start: empty_a . 'a'\l"]
+   4 [label="State 4\n\l  2 start: empty_a . 'a'\l"]
    4 -> 8 [style=solid label="'a'"]
-   5 [label="State 5\n  4 start: empty_b . 'b'\l"]
+   5 [label="State 5\n\l  4 start: empty_b . 'b'\l"]
    5 -> 9 [style=solid label="'b'"]
-   6 [label="State 6\n  6 start: empty_c . 'c'\l"]
+   6 [label="State 6\n\l  6 start: empty_c . 'c'\l"]
    6 -> 10 [style=solid label="'c'"]
-   7 [label="State 7\n  0 $accept: start $end .\l"]
-   7 -> "7R0e" [style = solid]
-  "7R0e" [style = filled, shape = diamond, fillcolor = 1, label = "Acc"]
-   8 [label="State 8\n  2 start: empty_a 'a' .\l"]
-   8 -> "8R2e" [style = solid]
-  "8R2e" [style = filled, shape = diamond, fillcolor = 3, label = "R2"]
-   9 [label="State 9\n  4 start: empty_b 'b' .\l"]
-   9 -> "9R4e" [style = solid]
-  "9R4e" [style = filled, shape = diamond, fillcolor = 3, label = "R4"]
-   10 [label="State 10\n  6 start: empty_c 'c' .\l"]
-   10 -> "10R6e" [style = solid]
-  "10R6e" [style = filled, shape = diamond, fillcolor = 3, label = "R6"]
+   7 [label="State 7\n\l  0 $accept: start $end .\l"]
+   7 -> "7R0" [style=solid]
+  "7R0" [label="Acc", fillcolor=1, shape=diamond, style=filled]
+   8 [label="State 8\n\l  2 start: empty_a 'a' .\l"]
+   8 -> "8R2" [style=solid]
+  "8R2" [label="R2", fillcolor=3, shape=diamond, style=filled]
+   9 [label="State 9\n\l  4 start: empty_b 'b' .\l"]
+   9 -> "9R4" [style=solid]
+  "9R4" [label="R4", fillcolor=3, shape=diamond, style=filled]
+   10 [label="State 10\n\l  6 start: empty_c 'c' .\l"]
+   10 -> "10R6" [style=solid]
+  "10R6" [label="R6", fillcolor=3, shape=diamond, style=filled]
  ]])
  
  ## ---------------- ##
@@@ -441,25 -421,25 +441,25 @@@ a: 
  b: ;
  ]],
  [[
-   0 [label="State 0\n  0 $accept: . exp $end\l  1 exp: . a\l  2    | . b\l  3 a: .  [$end]\l  4 b: .  [$end]\l"]
-   0 -> "0R3e" [style = solid]
-  "0R3e" [style = filled, shape = diamond, fillcolor = 3, label = "R3"]
-   0 -> "0R4d" [label = "[$end]" style = solid]
-  "0R4d" [style = filled, shape = diamond, fillcolor = 5, label = "R4"]
+   0 [label="State 0\n\l  0 $accept: . exp $end\l  1 exp: . a\l  2    | . b\l  3 a: .  [$end]\l  4 b: .  [$end]\l"]
    0 -> 1 [style=dashed label="exp"]
    0 -> 2 [style=dashed label="a"]
    0 -> 3 [style=dashed label="b"]
-   1 [label="State 1\n  0 $accept: exp . $end\l"]
+   0 -> "0R3" [style=solid]
+  "0R3" [label="R3", fillcolor=3, shape=diamond, style=filled]
+   0 -> "0R4d" [label="[$end]", style=solid]
+  "0R4d" [label="R4", fillcolor=5, shape=diamond, style=filled]
+   1 [label="State 1\n\l  0 $accept: exp . $end\l"]
    1 -> 4 [style=solid label="$end"]
-   2 [label="State 2\n  1 exp: a .\l"]
-   2 -> "2R1e" [style = solid]
-  "2R1e" [style = filled, shape = diamond, fillcolor = 3, label = "R1"]
-   3 [label="State 3\n  2 exp: b .\l"]
-   3 -> "3R2e" [style = solid]
-  "3R2e" [style = filled, shape = diamond, fillcolor = 3, label = "R2"]
-   4 [label="State 4\n  0 $accept: exp $end .\l"]
-   4 -> "4R0e" [style = solid]
-  "4R0e" [style = filled, shape = diamond, fillcolor = 1, label = "Acc"]
+   2 [label="State 2\n\l  1 exp: a .\l"]
+   2 -> "2R1" [style=solid]
+  "2R1" [label="R1", fillcolor=3, shape=diamond, style=filled]
+   3 [label="State 3\n\l  2 exp: b .\l"]
+   3 -> "3R2" [style=solid]
+  "3R2" [label="R2", fillcolor=3, shape=diamond, style=filled]
+   4 [label="State 4\n\l  0 $accept: exp $end .\l"]
+   4 -> "4R0" [style=solid]
+  "4R0" [label="Acc", fillcolor=1, shape=diamond, style=filled]
  ]])
  
  ## ---------------------------------------- ##
@@@ -474,51 -454,51 +474,51 @@@ b: 
  c: ;
  ]],
  [[
-   0 [label="State 0\n  0 $accept: . exp $end\l  1 exp: . a ';'\l  2    | . a ';'\l  3    | . a '.'\l  4    | . b '?'\l  5    | . b '!'\l  6    | . c '?'\l  7    | . c ';'\l  8 a: .  [';', '.']\l  9 b: .  ['?', '!']\l 10 c: .  [';', '?']\l"]
-   0 -> "0R8e" [style = solid]
-  "0R8e" [style = filled, shape = diamond, fillcolor = 3, label = "R8"]
-   0 -> "0R9e" [label = "['?', '!']" style = solid]
-  "0R9e" [style = filled, shape = diamond, fillcolor = 3, label = "R9"]
-   0 -> "0R10d" [label = "[';', '?']" style = solid]
-  "0R10d" [style = filled, shape = diamond, fillcolor = 5, label = "R10"]
+   0 [label="State 0\n\l  0 $accept: . exp $end\l  1 exp: . a ';'\l  2    | . a ';'\l  3    | . a '.'\l  4    | . b '?'\l  5    | . b '!'\l  6    | . c '?'\l  7    | . c ';'\l  8 a: .  [';', '.']\l  9 b: .  ['?', '!']\l 10 c: .  [';', '?']\l"]
    0 -> 1 [style=dashed label="exp"]
    0 -> 2 [style=dashed label="a"]
    0 -> 3 [style=dashed label="b"]
    0 -> 4 [style=dashed label="c"]
-   1 [label="State 1\n  0 $accept: exp . $end\l"]
+   0 -> "0R8" [style=solid]
+  "0R8" [label="R8", fillcolor=3, shape=diamond, style=filled]
+   0 -> "0R9" [label="['?', '!']", style=solid]
+  "0R9" [label="R9", fillcolor=3, shape=diamond, style=filled]
+   0 -> "0R10d" [label="[';', '?']", style=solid]
+  "0R10d" [label="R10", fillcolor=5, shape=diamond, style=filled]
+   1 [label="State 1\n\l  0 $accept: exp . $end\l"]
    1 -> 5 [style=solid label="$end"]
-   2 [label="State 2\n  1 exp: a . ';'\l  2    | a . ';'\l  3    | a . '.'\l"]
+   2 [label="State 2\n\l  1 exp: a . ';'\l  2    | a . ';'\l  3    | a . '.'\l"]
    2 -> 6 [style=solid label="';'"]
    2 -> 7 [style=solid label="'.'"]
-   3 [label="State 3\n  4 exp: b . '?'\l  5    | b . '!'\l"]
+   3 [label="State 3\n\l  4 exp: b . '?'\l  5    | b . '!'\l"]
    3 -> 8 [style=solid label="'?'"]
    3 -> 9 [style=solid label="'!'"]
-   4 [label="State 4\n  6 exp: c . '?'\l  7    | c . ';'\l"]
+   4 [label="State 4\n\l  6 exp: c . '?'\l  7    | c . ';'\l"]
    4 -> 10 [style=solid label="';'"]
    4 -> 11 [style=solid label="'?'"]
-   5 [label="State 5\n  0 $accept: exp $end .\l"]
-   5 -> "5R0e" [style = solid]
-  "5R0e" [style = filled, shape = diamond, fillcolor = 1, label = "Acc"]
-   6 [label="State 6\n  1 exp: a ';' .  [$end]\l  2    | a ';' .  [$end]\l"]
-   6 -> "6R1e" [style = solid]
-  "6R1e" [style = filled, shape = diamond, fillcolor = 3, label = "R1"]
-   6 -> "6R2d" [label = "[$end]" style = solid]
-  "6R2d" [style = filled, shape = diamond, fillcolor = 5, label = "R2"]
-   7 [label="State 7\n  3 exp: a '.' .\l"]
-   7 -> "7R3e" [style = solid]
-  "7R3e" [style = filled, shape = diamond, fillcolor = 3, label = "R3"]
-   8 [label="State 8\n  4 exp: b '?' .\l"]
-   8 -> "8R4e" [style = solid]
-  "8R4e" [style = filled, shape = diamond, fillcolor = 3, label = "R4"]
-   9 [label="State 9\n  5 exp: b '!' .\l"]
-   9 -> "9R5e" [style = solid]
-  "9R5e" [style = filled, shape = diamond, fillcolor = 3, label = "R5"]
-   10 [label="State 10\n  7 exp: c ';' .\l"]
-   10 -> "10R7e" [style = solid]
-  "10R7e" [style = filled, shape = diamond, fillcolor = 3, label = "R7"]
-   11 [label="State 11\n  6 exp: c '?' .\l"]
-   11 -> "11R6e" [style = solid]
-  "11R6e" [style = filled, shape = diamond, fillcolor = 3, label = "R6"]
+   5 [label="State 5\n\l  0 $accept: exp $end .\l"]
+   5 -> "5R0" [style=solid]
+  "5R0" [label="Acc", fillcolor=1, shape=diamond, style=filled]
+   6 [label="State 6\n\l  1 exp: a ';' .  [$end]\l  2    | a ';' .  [$end]\l"]
+   6 -> "6R1" [style=solid]
+  "6R1" [label="R1", fillcolor=3, shape=diamond, style=filled]
+   6 -> "6R2d" [label="[$end]", style=solid]
+  "6R2d" [label="R2", fillcolor=5, shape=diamond, style=filled]
+   7 [label="State 7\n\l  3 exp: a '.' .\l"]
+   7 -> "7R3" [style=solid]
+  "7R3" [label="R3", fillcolor=3, shape=diamond, style=filled]
+   8 [label="State 8\n\l  4 exp: b '?' .\l"]
+   8 -> "8R4" [style=solid]
+  "8R4" [label="R4", fillcolor=3, shape=diamond, style=filled]
+   9 [label="State 9\n\l  5 exp: b '!' .\l"]
+   9 -> "9R5" [style=solid]
+  "9R5" [label="R5", fillcolor=3, shape=diamond, style=filled]
+   10 [label="State 10\n\l  7 exp: c ';' .\l"]
+   10 -> "10R7" [style=solid]
+  "10R7" [label="R7", fillcolor=3, shape=diamond, style=filled]
+   11 [label="State 11\n\l  6 exp: c '?' .\l"]
+   11 -> "11R6" [style=solid]
+  "11R6" [label="R6", fillcolor=3, shape=diamond, style=filled]
  ]])
  
  ## ------------------------------------------------------ ##
@@@ -534,85 -514,85 +534,85 @@@ opexp: exp '+' exp
  imm: '0';
  ]],
  [[
-   0 [label="State 0\n  0 $accept: . exp $end\l  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  7 opexp: . exp '+' exp\l  8 imm: . '0'\l"]
+   0 [label="State 0\n\l  0 $accept: . exp $end\l  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  7 opexp: . exp '+' exp\l  8 imm: . '0'\l"]
    0 -> 1 [style=solid label="\"if\""]
    0 -> 2 [style=solid label="'0'"]
    0 -> 3 [style=dashed label="exp"]
    0 -> 4 [style=dashed label="ifexp"]
    0 -> 5 [style=dashed label="opexp"]
    0 -> 6 [style=dashed label="imm"]
-   1 [label="State 1\n  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  4      | \"if\" . exp \"then\" exp elseexp\l  7 opexp: . exp '+' exp\l  8 imm: . '0'\l"]
+   1 [label="State 1\n\l  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  4      | \"if\" . exp \"then\" exp elseexp\l  7 opexp: . exp '+' exp\l  8 imm: . '0'\l"]
    1 -> 1 [style=solid label="\"if\""]
    1 -> 2 [style=solid label="'0'"]
    1 -> 7 [style=dashed label="exp"]
    1 -> 4 [style=dashed label="ifexp"]
    1 -> 5 [style=dashed label="opexp"]
    1 -> 6 [style=dashed label="imm"]
-   2 [label="State 2\n  8 imm: '0' .\l"]
-   2 -> "2R8e" [style = solid]
-  "2R8e" [style = filled, shape = diamond, fillcolor = 3, label = "R8"]
-   3 [label="State 3\n  0 $accept: exp . $end\l  7 opexp: exp . '+' exp\l"]
+   2 [label="State 2\n\l  8 imm: '0' .\l"]
+   2 -> "2R8" [style=solid]
+  "2R8" [label="R8", fillcolor=3, shape=diamond, style=filled]
+   3 [label="State 3\n\l  0 $accept: exp . $end\l  7 opexp: exp . '+' exp\l"]
    3 -> 8 [style=solid label="$end"]
    3 -> 9 [style=solid label="'+'"]
-   4 [label="State 4\n  1 exp: ifexp .\l"]
-   4 -> "4R1e" [style = solid]
-  "4R1e" [style = filled, shape = diamond, fillcolor = 3, label = "R1"]
-   5 [label="State 5\n  2 exp: opexp .\l"]
-   5 -> "5R2e" [style = solid]
-  "5R2e" [style = filled, shape = diamond, fillcolor = 3, label = "R2"]
-   6 [label="State 6\n  3 exp: imm .\l"]
-   6 -> "6R3e" [style = solid]
-  "6R3e" [style = filled, shape = diamond, fillcolor = 3, label = "R3"]
-   7 [label="State 7\n  4 ifexp: \"if\" exp . \"then\" exp elseexp\l  7 opexp: exp . '+' exp\l"]
+   4 [label="State 4\n\l  1 exp: ifexp .\l"]
+   4 -> "4R1" [style=solid]
+  "4R1" [label="R1", fillcolor=3, shape=diamond, style=filled]
+   5 [label="State 5\n\l  2 exp: opexp .\l"]
+   5 -> "5R2" [style=solid]
+  "5R2" [label="R2", fillcolor=3, shape=diamond, style=filled]
+   6 [label="State 6\n\l  3 exp: imm .\l"]
+   6 -> "6R3" [style=solid]
+  "6R3" [label="R3", fillcolor=3, shape=diamond, style=filled]
+   7 [label="State 7\n\l  4 ifexp: \"if\" exp . \"then\" exp elseexp\l  7 opexp: exp . '+' exp\l"]
    7 -> 10 [style=solid label="\"then\""]
    7 -> 9 [style=solid label="'+'"]
-   8 [label="State 8\n  0 $accept: exp $end .\l"]
-   8 -> "8R0e" [style = solid]
-  "8R0e" [style = filled, shape = diamond, fillcolor = 1, label = "Acc"]
-   9 [label="State 9\n  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  7 opexp: . exp '+' exp\l  7      | exp '+' . exp\l  8 imm: . '0'\l"]
+   8 [label="State 8\n\l  0 $accept: exp $end .\l"]
+   8 -> "8R0" [style=solid]
+  "8R0" [label="Acc", fillcolor=1, shape=diamond, style=filled]
+   9 [label="State 9\n\l  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  7 opexp: . exp '+' exp\l  7      | exp '+' . exp\l  8 imm: . '0'\l"]
    9 -> 1 [style=solid label="\"if\""]
    9 -> 2 [style=solid label="'0'"]
    9 -> 11 [style=dashed label="exp"]
    9 -> 4 [style=dashed label="ifexp"]
    9 -> 5 [style=dashed label="opexp"]
    9 -> 6 [style=dashed label="imm"]
-   10 [label="State 10\n  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  4      | \"if\" exp \"then\" . exp elseexp\l  7 opexp: . exp '+' exp\l  8 imm: . '0'\l"]
+   10 [label="State 10\n\l  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  4      | \"if\" exp \"then\" . exp elseexp\l  7 opexp: . exp '+' exp\l  8 imm: . '0'\l"]
    10 -> 1 [style=solid label="\"if\""]
    10 -> 2 [style=solid label="'0'"]
    10 -> 12 [style=dashed label="exp"]
    10 -> 4 [style=dashed label="ifexp"]
    10 -> 5 [style=dashed label="opexp"]
    10 -> 6 [style=dashed label="imm"]
-   11 [label="State 11\n  7 opexp: exp . '+' exp\l  7      | exp '+' exp .  [$end, \"then\", \"else\", '+']\l"]
-   11 -> "11R7e" [style = solid]
-  "11R7e" [style = filled, shape = diamond, fillcolor = 3, label = "R7"]
-   11 -> "11R7d" [label = "['+']" style = solid]
-  "11R7d" [style = filled, shape = diamond, fillcolor = 5, label = "R7"]
+   11 [label="State 11\n\l  7 opexp: exp . '+' exp\l  7      | exp '+' exp .  [$end, \"then\", \"else\", '+']\l"]
    11 -> 9 [style=solid label="'+'"]
-   12 [label="State 12\n  4 ifexp: \"if\" exp \"then\" exp . elseexp\l  5 elseexp: . \"else\" exp\l  6        | .  [$end, \"then\", \"else\", '+']\l  7 opexp: exp . '+' exp\l"]
-   12 -> "12R6e" [style = solid]
-  "12R6e" [style = filled, shape = diamond, fillcolor = 3, label = "R6"]
-   12 -> "12R6d" [label = "[\"else\", '+']" style = solid]
-  "12R6d" [style = filled, shape = diamond, fillcolor = 5, label = "R6"]
+   11 -> "11R7d" [label="['+']", style=solid]
+  "11R7d" [label="R7", fillcolor=5, shape=diamond, style=filled]
+   11 -> "11R7" [style=solid]
+  "11R7" [label="R7", fillcolor=3, shape=diamond, style=filled]
+   12 [label="State 12\n\l  4 ifexp: \"if\" exp \"then\" exp . elseexp\l  5 elseexp: . \"else\" exp\l  6        | .  [$end, \"then\", \"else\", '+']\l  7 opexp: exp . '+' exp\l"]
    12 -> 13 [style=solid label="\"else\""]
    12 -> 9 [style=solid label="'+'"]
    12 -> 14 [style=dashed label="elseexp"]
-   13 [label="State 13\n  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  5 elseexp: \"else\" . exp\l  7 opexp: . exp '+' exp\l  8 imm: . '0'\l"]
+   12 -> "12R6d" [label="[\"else\", '+']", style=solid]
+  "12R6d" [label="R6", fillcolor=5, shape=diamond, style=filled]
+   12 -> "12R6" [style=solid]
+  "12R6" [label="R6", fillcolor=3, shape=diamond, style=filled]
+   13 [label="State 13\n\l  1 exp: . ifexp\l  2    | . opexp\l  3    | . imm\l  4 ifexp: . \"if\" exp \"then\" exp elseexp\l  5 elseexp: \"else\" . exp\l  7 opexp: . exp '+' exp\l  8 imm: . '0'\l"]
    13 -> 1 [style=solid label="\"if\""]
    13 -> 2 [style=solid label="'0'"]
    13 -> 15 [style=dashed label="exp"]
    13 -> 4 [style=dashed label="ifexp"]
    13 -> 5 [style=dashed label="opexp"]
    13 -> 6 [style=dashed label="imm"]
-   14 [label="State 14\n  4 ifexp: \"if\" exp \"then\" exp elseexp .\l"]
-   14 -> "14R4e" [style = solid]
-  "14R4e" [style = filled, shape = diamond, fillcolor = 3, label = "R4"]
-   15 [label="State 15\n  5 elseexp: \"else\" exp .  [$end, \"then\", \"else\", '+']\l  7 opexp: exp . '+' exp\l"]
-   15 -> "15R5e" [style = solid]
-  "15R5e" [style = filled, shape = diamond, fillcolor = 3, label = "R5"]
-   15 -> "15R5d" [label = "['+']" style = solid]
-  "15R5d" [style = filled, shape = diamond, fillcolor = 5, label = "R5"]
+   14 [label="State 14\n\l  4 ifexp: \"if\" exp \"then\" exp elseexp .\l"]
+   14 -> "14R4" [style=solid]
+  "14R4" [label="R4", fillcolor=3, shape=diamond, style=filled]
+   15 [label="State 15\n\l  5 elseexp: \"else\" exp .  [$end, \"then\", \"else\", '+']\l  7 opexp: exp . '+' exp\l"]
    15 -> 9 [style=solid label="'+'"]
+   15 -> "15R5d" [label="['+']", style=solid]
+  "15R5d" [label="R5", fillcolor=5, shape=diamond, style=filled]
+   15 -> "15R5" [style=solid]
+  "15R5" [label="R5", fillcolor=3, shape=diamond, style=filled]
  ]])
  
  m4_popdef([AT_TEST])
diff --combined tests/reduce.at
index d2a5c554698c1ce1213b2b9789cb8c8f0bccd7ff,bf43bf9dc7922175bb4b9b3f5941f4e504b79458..2d9093f0f63efea5c4fa0d2b5ddb1dcda76fcaf9
@@@ -88,16 -88,16 +88,16 @@@ exp: useful
  ]])
  
  AT_BISON_CHECK([[input.y]], 0, [],
 -[[input.y: warning: 9 nonterminals useless in grammar
 -input.y:4.8-15: warning: nonterminal useless in grammar: useless1
 -input.y:5.8-15: warning: nonterminal useless in grammar: useless2
 -input.y:6.8-15: warning: nonterminal useless in grammar: useless3
 -input.y:7.8-15: warning: nonterminal useless in grammar: useless4
 -input.y:8.8-15: warning: nonterminal useless in grammar: useless5
 -input.y:9.8-15: warning: nonterminal useless in grammar: useless6
 -input.y:10.8-15: warning: nonterminal useless in grammar: useless7
 -input.y:11.8-15: warning: nonterminal useless in grammar: useless8
 -input.y:12.8-15: warning: nonterminal useless in grammar: useless9
 +[[input.y: warning: 9 nonterminals useless in grammar [-Wother]
 +input.y:4.8-15: warning: nonterminal useless in grammar: useless1 [-Wother]
 +input.y:5.8-15: warning: nonterminal useless in grammar: useless2 [-Wother]
 +input.y:6.8-15: warning: nonterminal useless in grammar: useless3 [-Wother]
 +input.y:7.8-15: warning: nonterminal useless in grammar: useless4 [-Wother]
 +input.y:8.8-15: warning: nonterminal useless in grammar: useless5 [-Wother]
 +input.y:9.8-15: warning: nonterminal useless in grammar: useless6 [-Wother]
 +input.y:10.8-15: warning: nonterminal useless in grammar: useless7 [-Wother]
 +input.y:11.8-15: warning: nonterminal useless in grammar: useless8 [-Wother]
 +input.y:12.8-15: warning: nonterminal useless in grammar: useless9 [-Wother]
  ]])
  
  AT_CHECK([[sed -n '/^Grammar/q;/^$/!p' input.output]], 0,
@@@ -143,26 -143,26 +143,26 @@@ useless9: '9'
  ]])
  
  AT_BISON_CHECK([[input.y]], 0, [],
 -[[input.y: warning: 9 nonterminals useless in grammar
 -input.y: warning: 9 rules useless in grammar
 -input.y:6.1-8: warning: nonterminal useless in grammar: useless1
 -input.y:7.1-8: warning: nonterminal useless in grammar: useless2
 -input.y:8.1-8: warning: nonterminal useless in grammar: useless3
 -input.y:9.1-8: warning: nonterminal useless in grammar: useless4
 -input.y:10.1-8: warning: nonterminal useless in grammar: useless5
 -input.y:11.1-8: warning: nonterminal useless in grammar: useless6
 -input.y:12.1-8: warning: nonterminal useless in grammar: useless7
 -input.y:13.1-8: warning: nonterminal useless in grammar: useless8
 -input.y:14.1-8: warning: nonterminal useless in grammar: useless9
 -input.y:6.11-13: warning: rule useless in grammar: useless1: '1'
 -input.y:7.11-13: warning: rule useless in grammar: useless2: '2'
 -input.y:8.11-13: warning: rule useless in grammar: useless3: '3'
 -input.y:9.11-13: warning: rule useless in grammar: useless4: '4'
 -input.y:10.11-13: warning: rule useless in grammar: useless5: '5'
 -input.y:11.11-13: warning: rule useless in grammar: useless6: '6'
 -input.y:12.11-13: warning: rule useless in grammar: useless7: '7'
 -input.y:13.11-13: warning: rule useless in grammar: useless8: '8'
 -input.y:14.11-13: warning: rule useless in grammar: useless9: '9'
 +[[input.y: warning: 9 nonterminals useless in grammar [-Wother]
 +input.y: warning: 9 rules useless in grammar [-Wother]
 +input.y:6.1-8: warning: nonterminal useless in grammar: useless1 [-Wother]
 +input.y:7.1-8: warning: nonterminal useless in grammar: useless2 [-Wother]
 +input.y:8.1-8: warning: nonterminal useless in grammar: useless3 [-Wother]
 +input.y:9.1-8: warning: nonterminal useless in grammar: useless4 [-Wother]
 +input.y:10.1-8: warning: nonterminal useless in grammar: useless5 [-Wother]
 +input.y:11.1-8: warning: nonterminal useless in grammar: useless6 [-Wother]
 +input.y:12.1-8: warning: nonterminal useless in grammar: useless7 [-Wother]
 +input.y:13.1-8: warning: nonterminal useless in grammar: useless8 [-Wother]
 +input.y:14.1-8: warning: nonterminal useless in grammar: useless9 [-Wother]
 +input.y:6.11-13: warning: rule useless in grammar: useless1: '1' [-Wother]
 +input.y:7.11-13: warning: rule useless in grammar: useless2: '2' [-Wother]
 +input.y:8.11-13: warning: rule useless in grammar: useless3: '3' [-Wother]
 +input.y:9.11-13: warning: rule useless in grammar: useless4: '4' [-Wother]
 +input.y:10.11-13: warning: rule useless in grammar: useless5: '5' [-Wother]
 +input.y:11.11-13: warning: rule useless in grammar: useless6: '6' [-Wother]
 +input.y:12.11-13: warning: rule useless in grammar: useless7: '7' [-Wother]
 +input.y:13.11-13: warning: rule useless in grammar: useless8: '8' [-Wother]
 +input.y:14.11-13: warning: rule useless in grammar: useless9: '9' [-Wother]
  ]])
  
  AT_CHECK([[sed -n '/^Grammar/q;/^$/!p' input.output]], 0,
@@@ -239,13 -239,13 +239,13 @@@ non_productive: non_productive useless_
  ]])
  
  AT_BISON_CHECK([[not-reduced.y]], 0, [],
 -[[not-reduced.y: warning: 2 nonterminals useless in grammar
 -not-reduced.y: warning: 3 rules useless in grammar
 -not-reduced.y:14.1-13: warning: nonterminal useless in grammar: not_reachable
 -not-reduced.y:11.6-19: warning: nonterminal useless in grammar: non_productive
 -not-reduced.y:11.6-57: warning: rule useless in grammar: exp: non_productive
 -not-reduced.y:14.16-56: warning: rule useless in grammar: not_reachable: useful
 -not-reduced.y:17.17-18.63: warning: rule useless in grammar: non_productive: non_productive useless_token
 +[[not-reduced.y: warning: 2 nonterminals useless in grammar [-Wother]
 +not-reduced.y: warning: 3 rules useless in grammar [-Wother]
 +not-reduced.y:14.1-13: warning: nonterminal useless in grammar: not_reachable [-Wother]
 +not-reduced.y:11.6-19: warning: nonterminal useless in grammar: non_productive [-Wother]
 +not-reduced.y:11.6-57: warning: rule useless in grammar: exp: non_productive [-Wother]
 +not-reduced.y:14.16-56: warning: rule useless in grammar: not_reachable: useful [-Wother]
 +not-reduced.y:17.17-18.63: warning: rule useless in grammar: non_productive: non_productive useless_token [-Wother]
  ]])
  
  AT_CHECK([[sed -n '/^Grammar/q;/^$/!p' not-reduced.output]], 0,
@@@ -314,13 -314,13 +314,13 @@@ indirection: underivable
  ]])
  
  AT_BISON_CHECK([[input.y]], 0, [],
 -[[input.y: warning: 2 nonterminals useless in grammar
 -input.y: warning: 3 rules useless in grammar
 -input.y:5.15-25: warning: nonterminal useless in grammar: underivable
 -input.y:6.14-24: warning: nonterminal useless in grammar: indirection
 -input.y:5.15-25: warning: rule useless in grammar: exp: underivable
 -input.y:6.14-24: warning: rule useless in grammar: underivable: indirection
 -input.y:7.14-24: warning: rule useless in grammar: indirection: underivable
 +[[input.y: warning: 2 nonterminals useless in grammar [-Wother]
 +input.y: warning: 3 rules useless in grammar [-Wother]
 +input.y:5.15-25: warning: nonterminal useless in grammar: underivable [-Wother]
 +input.y:6.14-24: warning: nonterminal useless in grammar: indirection [-Wother]
 +input.y:5.15-25: warning: rule useless in grammar: exp: underivable [-Wother]
 +input.y:6.14-24: warning: rule useless in grammar: underivable: indirection [-Wother]
 +input.y:7.14-24: warning: rule useless in grammar: indirection: underivable [-Wother]
  ]])
  
  AT_CHECK([[sed -n '/^Grammar/q;/^$/!p' input.output]], 0,
@@@ -350,8 -350,8 +350,8 @@@ exp: exp
  ]])
  
  AT_BISON_CHECK([[input.y]], 1, [],
 -[[input.y: warning: 2 nonterminals useless in grammar
 -input.y: warning: 2 rules useless in grammar
 +[[input.y: warning: 2 nonterminals useless in grammar [-Wother]
 +input.y: warning: 2 rules useless in grammar [-Wother]
  input.y:3.1-3: fatal error: start symbol exp does not derive any sentence
  ]])
  
@@@ -396,7 -396,7 +396,7 @@@ AT_TEST_LR_TYPE([[Single State Split]]
  [[%left 'a'
  // Conflict resolution renders state 12 unreachable for canonical LR(1).  We
  // keep it so that the paser table diff is easier to code.
 -%define lr.keep-unreachable-states]],
 +%define lr.keep-unreachable-state]],
  [[
  S: 'a' A 'a' /* rule 1 */
   | 'b' A 'b' /* rule 2 */
@@@ -437,7 -437,7 +437,7 @@@ dnl BISON-STDER
  [],
  
  dnl TABLES
- [[state 0
+ [[State 0
  
      0 $accept: . S $end
      1 S: . 'a' A 'a'
      S  go to state 4
  
  
state 1
State 1
  
      1 S: 'a' . A 'a'
      4 A: . 'a' 'a'
      A  go to state 6
  
  
state 2
State 2
  
      2 S: 'b' . A 'b'
      4 A: . 'a' 'a'
      A  go to state 7
  
  
state 3
State 3
  
      3 S: 'c' . c
      4 A: . 'a' 'a'
      c  go to state 10
  
  
state 4
State 4
  
      0 $accept: S . $end
  
      $end  shift, and go to state 11
  
  
state 5
State 5
  
      4 A: 'a' . 'a'
      5  | 'a' .  ]AT_COND_CASE([[LALR]], [[['a', 'b']]], [[['a']]])[
      Conflict between rule 5 and token 'a' resolved as reduce (%left 'a').
  
  
state 6
State 6
  
      1 S: 'a' A . 'a'
  
      'a'  shift, and go to state 13
  
  
state 7
State 7
  
      2 S: 'b' A . 'b'
  
      'b'  shift, and go to state 14
  
  
state 8
State 8
  
      4 A: 'a' . 'a'
      5  | 'a' .  [$end]
                    [[$default]])[  reduce using rule 5 (A)
  
  
state 9
State 9
  
      7 c: A .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 7 (c)
  
  
state 10
State 10
  
      3 S: 'c' c .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 3 (S)
  
  
state 11
State 11
  
      0 $accept: S $end .
  
      $default  accept
  
  
state 12
State 12
  
      4 A: 'a' 'a' .]AT_COND_CASE([[canonical LR]], [[  ['a']]])[
  
                    [[$default]])[  reduce using rule 4 (A)
  
  
state 13
State 13
  
      1 S: 'a' A 'a' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 1 (S)
  
  
state 14
State 14
  
      2 S: 'b' A 'b' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 2 (S)
  
  
state 15
State 15
  
      6 c: 'a' 'b' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                                                                         [[]], [[
  
  
state 16
State 16
  
      4 A: 'a' . 'a'
      5  | 'a' .  ['b']
                    [[$default]])[  reduce using rule 5 (A)]AT_COND_CASE([[canonical LR]], [[
  
  
state 17
State 17
  
      4 A: 'a' 'a' .  [$end]
  
      $end  reduce using rule 4 (A)
  
  
state 18
State 18
  
      4 A: 'a' 'a' .  ['b']
  
@@@ -629,7 -629,7 +629,7 @@@ AT_TEST_LR_TYPE([[Lane Split]]
  [[%left 'a'
  // Conflict resolution renders state 16 unreachable for canonical LR(1).  We
  // keep it so that the paser table diff is easier to code.
 -%define lr.keep-unreachable-states]],
 +%define lr.keep-unreachable-state]],
  [[
  /* Similar to the last test case set but two states must be split.  */
  S: 'a' A 'a' /* rule 1 */
@@@ -653,7 -653,7 +653,7 @@@ dnl BISON-STDER
  [],
  
  dnl TABLES
- [[state 0
+ [[State 0
  
      0 $accept: . S $end
      1 S: . 'a' A 'a'
      S  go to state 4
  
  
state 1
State 1
  
      1 S: 'a' . A 'a'
      4 A: . 'a' 'a' 'a'
      A  go to state 6
  
  
state 2
State 2
  
      2 S: 'b' . A 'b'
      4 A: . 'a' 'a' 'a'
      A  go to state 7
  
  
state 3
State 3
  
      3 S: 'c' . c
      4 A: . 'a' 'a' 'a'
      c  go to state 10
  
  
state 4
State 4
  
      0 $accept: S . $end
  
      $end  shift, and go to state 11
  
  
state 5
State 5
  
      4 A: 'a' . 'a' 'a'
      5  | 'a' . 'a'
      'a'  shift, and go to state 12
  
  
state 6
State 6
  
      1 S: 'a' A . 'a'
  
      'a'  shift, and go to state 13
  
  
state 7
State 7
  
      2 S: 'b' A . 'b'
  
      'b'  shift, and go to state 14
  
  
state 8
State 8
  
      4 A: 'a' . 'a' 'a'
      5  | 'a' . 'a'
      'a'  shift, and go to state 15
  
  
state 9
State 9
  
      7 c: A .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 7 (c)
  
  
state 10
State 10
  
      3 S: 'c' c .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 3 (S)
  
  
state 11
State 11
  
      0 $accept: S $end .
  
      $default  accept
  
  
state 12
State 12
  
      4 A: 'a' 'a' . 'a'
      5  | 'a' 'a' .  ]AT_COND_CASE([[LALR]], [[['a', 'b']]], [[['a']]])[
      Conflict between rule 5 and token 'a' resolved as reduce (%left 'a').
  
  
state 13
State 13
  
      1 S: 'a' A 'a' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 1 (S)
  
  
state 14
State 14
  
      2 S: 'b' A 'b' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 2 (S)
  
  
state 15
State 15
  
      4 A: 'a' 'a' . 'a'
      5  | 'a' 'a' .  [$end]
                    [[$default]])[  reduce using rule 5 (A)
  
  
state 16
State 16
  
      4 A: 'a' 'a' 'a' .]AT_COND_CASE([[canonical LR]], [[  ['a']]])[
  
                    [[$default]])[  reduce using rule 4 (A)
  
  
state 17
State 17
  
      6 c: 'a' 'a' 'b' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                                                                         [[]], [[
  
  
state 18
State 18
  
      4 A: 'a' . 'a' 'a'
      5  | 'a' . 'a'
                                                [[19]])[
  
  
state 19]AT_COND_CASE([[canonical LR]], [[
State 19]AT_COND_CASE([[canonical LR]], [[
  
      4 A: 'a' 'a' 'a' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 4 (A)
  
  
state 20]])[
State 20]])[
  
      4 A: 'a' 'a' . 'a'
      5  | 'a' 'a' .  ['b']
                    [[$default]])[  reduce using rule 5 (A)]AT_COND_CASE([[canonical LR]], [[
  
  
state 21
State 21
  
      4 A: 'a' 'a' 'a' .]AT_COND_CASE([[canonical LR]], [[  ['b']]])[
  
@@@ -873,7 -873,7 +873,7 @@@ AT_TEST_LR_TYPE([[Complex Lane Split]]
  [[%left 'a'
  // Conflict resolution renders state 16 unreachable for canonical LR(1).  We
  // keep it so that the paser table diff is easier to code.
 -%define lr.keep-unreachable-states]],
 +%define lr.keep-unreachable-state]],
  [[
  /* Similar to the last test case set but forseeing the S/R conflict from the
     first state that must be split is becoming difficult.  Imagine if B were
@@@ -900,7 -900,7 +900,7 @@@ dnl BISON-STDER
  [],
  
  dnl TABLES
- [[state 0
+ [[State 0
  
      0 $accept: . S $end
      1 S: . 'a' A 'a'
      S  go to state 4
  
  
state 1
State 1
  
      1 S: 'a' . A 'a'
      4 A: . 'a' 'a' B
      A  go to state 6
  
  
state 2
State 2
  
      2 S: 'b' . A 'b'
      4 A: . 'a' 'a' B
      A  go to state 7
  
  
state 3
State 3
  
      3 S: 'c' . c
      4 A: . 'a' 'a' B
      c  go to state 10
  
  
state 4
State 4
  
      0 $accept: S . $end
  
      $end  shift, and go to state 11
  
  
state 5
State 5
  
      4 A: 'a' . 'a' B
  
      'a'  shift, and go to state 12
  
  
state 6
State 6
  
      1 S: 'a' A . 'a'
  
      'a'  shift, and go to state 13
  
  
state 7
State 7
  
      2 S: 'b' A . 'b'
  
      'b'  shift, and go to state 14
  
  
state 8
State 8
  
      4 A: 'a' . 'a' B
      7 c: 'a' . 'a' 'b'
      'a'  shift, and go to state 15
  
  
state 9
State 9
  
      8 c: A .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 8 (c)
  
  
state 10
State 10
  
      3 S: 'c' c .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 3 (S)
  
  
state 11
State 11
  
      0 $accept: S $end .
  
      $default  accept
  
  
state 12
State 12
  
      4 A: 'a' 'a' . B
      5 B: . 'a'
      Conflict between rule 6 and token 'a' resolved as reduce (%left 'a').
  
  
state 13
State 13
  
      1 S: 'a' A 'a' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 1 (S)
  
  
state 14
State 14
  
      2 S: 'b' A 'b' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 2 (S)
  
  
state 15
State 15
  
      4 A: 'a' 'a' . B
      5 B: . 'a'
      B  go to state ]AT_COND_CASE([[canonical LR]], [[21]], [[17]])[
  
  
state 16
State 16
  
      5 B: 'a' .]AT_COND_CASE([[canonical LR]], [[  ['a']]])[
  
                    [[$default]])[  reduce using rule 5 (B)
  
  
state 17
State 17
  
      4 A: 'a' 'a' B .]AT_COND_CASE([[canonical LR]], [[  ['a']]])[
  
                    [[$default]])[  reduce using rule 4 (A)
  
  
state 18
State 18
  
      7 c: 'a' 'a' 'b' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 7 (c)]AT_COND_CASE([[LALR]], [], [[
  
  
state 19
State 19
  
      4 A: 'a' . 'a' B
  
                                                [[20]])[
  
  
state 20]AT_COND_CASE([[canonical LR]], [[
State 20]AT_COND_CASE([[canonical LR]], [[
  
      5 B: 'a' .  [$end]
  
      $end  reduce using rule 5 (B)
  
  
state 21
State 21
  
      4 A: 'a' 'a' B .  [$end]
  
      $end  reduce using rule 4 (A)
  
  
state 22]])[
State 22]])[
  
      4 A: 'a' 'a' . B
      5 B: . 'a'
      B  go to state ]AT_COND_CASE([[canonical LR]], [[24
  
  
state 23
State 23
  
      5 B: 'a' .  ['b']
  
      'b'  reduce using rule 5 (B)
  
  
state 24
State 24
  
      4 A: 'a' 'a' B .  ['b']
  
@@@ -1139,7 -1139,7 +1139,7 @@@ dnl PARSER-EXIT-VALUE, PARSER-STDOUT, P
  ]])])
  
  AT_TEST_LR_TYPE([[Split During Added Lookahead Propagation]],
 -[[%define lr.keep-unreachable-states]],
 +[[%define lr.keep-unreachable-state]],
  [[
  /* The partial state chart diagram below is for LALR(1).  State 0 is the start
     state.  States are iterated for successor construction in numerical order.
@@@ -1191,11 -1191,11 +1191,11 @@@ dnl INPU
  
  dnl BISON-STDERR
  [AT_COND_CASE([[LALR]],
 -[[input.y: conflicts: 1 reduce/reduce
 +[[input.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
  ]], [])],
  
  dnl TABLES
- [[state 0
+ [[State 0
  
      0 $accept: . S $end
      1 S: . 'a' A 'f'
      S  go to state 4
  
  
state 1
State 1
  
      1 S: 'a' . A 'f'
      2  | 'a' . B
      B  go to state 7
  
  
state 2
State 2
  
      3 S: 'b' . A 'f'
      4  | 'b' . B 'g'
      B  go to state 10
  
  
state 3
State 3
  
      6 S: 'c' . 'c' A 'g'
      7  | 'c' . 'c' B
      'c'  shift, and go to state 11
  
  
state 4
State 4
  
      0 $accept: S . $end
  
      $end  shift, and go to state 12
  
  
state 5
State 5
  
      8 A: 'd' . 'e'
      9 B: 'd' . 'e'
                                                 [[20]])[
  
  
state 6
State 6
  
      1 S: 'a' A . 'f'
  
      'f'  shift, and go to state 14
  
  
state 7
State 7
  
      2 S: 'a' B .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 2 (S)
  
  
state 8
State 8
  
      5 S: 'b' 'd' .  [$end]
      8 A: 'd' . 'e'
                    [[$default]])[  reduce using rule 5 (S)
  
  
state 9
State 9
  
      3 S: 'b' A . 'f'
  
      'f'  shift, and go to state 15
  
  
state 10
State 10
  
      4 S: 'b' B . 'g'
  
      'g'  shift, and go to state 16
  
  
state 11
State 11
  
      6 S: 'c' 'c' . A 'g'
      7  | 'c' 'c' . B
      B  go to state 18
  
  
state 12
State 12
  
      0 $accept: S $end .
  
      $default  accept]AT_COND_CASE([[LALR]], [[
  
  
state 13
State 13
  
      8 A: 'd' 'e' .  ['f', 'g']
      9 B: 'd' 'e' .  [$end, 'g']
      $default  reduce using rule 8 (A)]], [[
  
  
state 13
State 13
  
      8 A: 'd' 'e' .  ['f']
      9 B: 'd' 'e' .  ]AT_COND_CASE([[canonical LR]], [[[$end]]], [[['g']]])[
                    [[$default]])[  reduce using rule 8 (A)]])[
  
  
state 14
State 14
  
      1 S: 'a' A 'f' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 1 (S)
  
  
state 15
State 15
  
      3 S: 'b' A 'f' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 3 (S)
  
  
state 16
State 16
  
      4 S: 'b' B 'g' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 4 (S)
  
  
state 17
State 17
  
      6 S: 'c' 'c' A . 'g'
  
      'g'  shift, and go to state 19
  
  
state 18
State 18
  
      7 S: 'c' 'c' B .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                    [[$default]])[  reduce using rule 7 (S)
  
  
state 19
State 19
  
      6 S: 'c' 'c' A 'g' .]AT_COND_CASE([[canonical LR]], [[  [$end]]])[
  
                                                                         [[]], [[
  
  
state 20]AT_COND_CASE([[canonical LR]], [[
State 20]AT_COND_CASE([[canonical LR]], [[
  
      8 A: 'd' 'e' .  ['f']
      9 B: 'd' 'e' .  ['g']
      'g'  reduce using rule 9 (B)
  
  
state 21
State 21
  
      8 A: 'd' . 'e'
      9 B: 'd' . 'e'
      'e'  shift, and go to state 22
  
  
state 22
State 22
  
      8 A: 'd' 'e' .  ['g']
      9 B: 'd' 'e' .  [$end]
@@@ -1443,28 -1443,28 +1443,28 @@@ dnl PARSER-EXIT-VALUE, PARSER-STDOUT, P
  
  
  ## ------------------------------- ##
 -## %define lr.default-reductions.  ##
 +## %define lr.default-reduction.  ##
  ## ------------------------------- ##
  
  # AT_TEST_LR_DEFAULT_REDUCTIONS(GRAMMAR, INPUT, TABLES)
  # -----------------------------------------------------
  m4_define([AT_TEST_LR_DEFAULT_REDUCTIONS],
  [
 -AT_TEST_TABLES_AND_PARSE([[no %define lr.default-reductions]],
 +AT_TEST_TABLES_AND_PARSE([[no %define lr.default-reduction]],
                           [[most]], [[]],
                           [[]],
                           [$1], [$2], [[]], [$3])
 -AT_TEST_TABLES_AND_PARSE([[%define lr.default-reductions most]],
 +AT_TEST_TABLES_AND_PARSE([[%define lr.default-reduction most]],
                           [[most]], [[]],
 -                         [[%define lr.default-reductions most]],
 +                         [[%define lr.default-reduction most]],
                           [$1], [$2], [[]], [$3])
 -AT_TEST_TABLES_AND_PARSE([[%define lr.default-reductions consistent]],
 +AT_TEST_TABLES_AND_PARSE([[%define lr.default-reduction consistent]],
                           [[consistent]], [[]],
 -                         [[%define lr.default-reductions consistent]],
 +                         [[%define lr.default-reduction consistent]],
                           [$1], [$2], [[]], [$3])
 -AT_TEST_TABLES_AND_PARSE([[%define lr.default-reductions accepting]],
 +AT_TEST_TABLES_AND_PARSE([[%define lr.default-reduction accepting]],
                           [[accepting]], [[]],
 -                         [[%define lr.default-reductions accepting]],
 +                         [[%define lr.default-reduction accepting]],
                           [$1], [$2], [[]], [$3])
  ])
  
@@@ -1491,7 -1491,7 +1491,7 @@@ c: 
  ]],
  dnl Visit each state mentioned above.
  [['a', 'a']],
- [[state 0
+ [[State 0
  
      0 $accept: . start $end
      1 start: . a b
      a      go to state 3
  
  
state 1
State 1
  
      4 a: 'a' .]AT_COND_CASE([[accepting]], [[  [$end, 'a', 'b']
  
      $default  reduce using rule 4 (a)]])[
  
  
state 2
State 2
  
      0 $accept: start . $end
  
      $end  shift, and go to state 4
  
  
state 3
State 3
  
      1 start: a . b
      2      | a . b 'a'
      c  go to state 6
  
  
state 4
State 4
  
      0 $accept: start $end .
  
      $default  accept
  
  
state 5
State 5
  
      1 start: a b .  [$end]
      2      | a b . 'a'
                    [[$end]])[  reduce using rule 1 (start)
  
  
state 6
State 6
  
      3 start: a c . 'b'
  
      'b'  shift, and go to state 8
  
  
state 7
State 7
  
      2 start: a b 'a' .]AT_COND_CASE([[accepting]], [[  [$end]
  
      $default  reduce using rule 2 (start)]])[
  
  
state 8
State 8
  
      3 start: a c 'b' .]AT_COND_CASE([[accepting]], [[  [$end]
  
diff --combined tests/regression.at
index 4d6e255a89981805f277f9bb193c51ce4aae5d6d,3fa20e27c2ecc53ae0258f380315d2b40900e845..769142008eda10acee2b8a347434a2312f9f9bc8
@@@ -209,7 -209,7 +209,7 @@@ exp: '(' exp ')' | NUM 
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([-v -o input.c input.y], 0, [],
 -[[input.y:6.8-14: warning: symbol "<=" used more than once as a literal string
 +[[input.y:6.8-14: warning: symbol "<=" used more than once as a literal string [-Wother]
  ]])
  
  AT_CLEANUP
@@@ -293,7 -293,7 +293,7 @@@ $@2 (9
      on left: 3, on right: 4
  
  
state 0
State 0
  
      0 $accept: . expr $end
  
      $@2   go to state 3
  
  
state 1
State 1
  
      2 expr: 'a' . $@1 'b'
  
      $@1  go to state 4
  
  
state 2
State 2
  
      0 $accept: expr . $end
  
      $end  shift, and go to state 5
  
  
state 3
State 3
  
      4 expr: $@2 . 'c'
  
      'c'  shift, and go to state 6
  
  
state 4
State 4
  
      2 expr: 'a' $@1 . 'b'
  
      'b'  shift, and go to state 7
  
  
state 5
State 5
  
      0 $accept: expr $end .
  
      $default  accept
  
  
state 6
State 6
  
      4 expr: $@2 'c' .
  
      $default  reduce using rule 4 (expr)
  
  
state 7
State 7
  
      2 expr: 'a' $@1 'b' .
  
@@@ -478,8 -478,8 +478,8 @@@ AT_BISON_OPTION_POPDEF
  # C-string literal.  Also notice that unnecessary escaping, such as "\?", from
  # the user specification is eliminated.
  AT_BISON_CHECK([-o input.c input.y], [[0]], [[]],
 -[[input.y:22.8-14: warning: symbol SPECIAL redeclared
 -input.y:22.8-63: warning: symbol "\\'?\"\a\b\f\n\r\t\v\001\201\001\201??!" used more than once as a literal string
 +[[input.y:22.8-14: warning: symbol SPECIAL redeclared [-Wother]
 +input.y:22.8-63: warning: symbol "\\'?\"\a\b\f\n\r\t\v\001\201\001\201??!" used more than once as a literal string [-Wother]
  ]])
  AT_COMPILE([input])
  
@@@ -538,7 -538,7 +538,7 @@@ AT_SETUP([Web2c Report]
  AT_KEYWORDS([report])
  
  AT_DATA([input.y],
 -[[%token      undef_id_tok const_id_tok
 +[[%token        undef_id_tok const_id_tok
  
  %start CONST_DEC_PART
  \f
@@@ -548,12 -548,12 +548,12 @@@ CONST_DEC_PART
          ;
  
  CONST_DEC_LIST:
 -        CONST_DEC
 +          CONST_DEC
          | CONST_DEC_LIST CONST_DEC
          ;
  
  CONST_DEC:
 -        { } undef_id_tok '=' const_id_tok ';'
 +          { } undef_id_tok '=' const_id_tok ';'
          ;
  %%
  ]])
@@@ -598,7 -598,7 +598,7 @@@ $@1 (11
      on left: 4, on right: 5
  
  
state 0
State 0
  
      0 $accept: . CONST_DEC_PART $end
  
      $@1             go to state 4
  
  
state 1
State 1
  
      0 $accept: CONST_DEC_PART . $end
  
      $end  shift, and go to state 5
  
  
state 2
State 2
  
      1 CONST_DEC_PART: CONST_DEC_LIST .
      3 CONST_DEC_LIST: CONST_DEC_LIST . CONST_DEC
      $@1        go to state 4
  
  
state 3
State 3
  
      2 CONST_DEC_LIST: CONST_DEC .
  
      $default  reduce using rule 2 (CONST_DEC_LIST)
  
  
state 4
State 4
  
      5 CONST_DEC: $@1 . undef_id_tok '=' const_id_tok ';'
  
      undef_id_tok  shift, and go to state 7
  
  
state 5
State 5
  
      0 $accept: CONST_DEC_PART $end .
  
      $default  accept
  
  
state 6
State 6
  
      3 CONST_DEC_LIST: CONST_DEC_LIST CONST_DEC .
  
      $default  reduce using rule 3 (CONST_DEC_LIST)
  
  
state 7
State 7
  
      5 CONST_DEC: $@1 undef_id_tok . '=' const_id_tok ';'
  
      '='  shift, and go to state 8
  
  
state 8
State 8
  
      5 CONST_DEC: $@1 undef_id_tok '=' . const_id_tok ';'
  
      const_id_tok  shift, and go to state 9
  
  
state 9
State 9
  
      5 CONST_DEC: $@1 undef_id_tok '=' const_id_tok . ';'
  
      ';'  shift, and go to state 10
  
  
state 10
State 10
  
      5 CONST_DEC: $@1 undef_id_tok '=' const_id_tok ';' .
  
@@@ -759,6 -759,15 +759,6 @@@ AT_CHECK([[cat tables.c]], 0
         2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
         5,     6
  };
 -static const yytype_uint8 yyprhs[] =
 -{
 -       0,     0,     3,     5,     6,     9,    14
 -};
 -static const yytype_int8 yyrhs[] =
 -{
 -       8,     0,    -1,     9,    -1,    -1,    10,    11,    -1,     3,
 -       4,     5,     8,    -1,     6,     8,    -1
 -};
  static const yytype_uint8 yyrline[] =
  {
         0,     2,     2,     3,     3,     4,     5
@@@ -772,24 -781,32 +772,24 @@@ static const yytype_uint16 yytoknum[] 
  {
         0,   256,   257,   258,   259,   260,   261
  };
 -static const yytype_uint8 yyr1[] =
 -{
 -       0,     7,     8,     9,     9,    10,    11
 -};
 -static const yytype_uint8 yyr2[] =
 +static const yytype_int8 yypact[] =
  {
 -       0,     2,     1,     0,     2,     4,     2
 +      -2,    -1,     4,    -8,     0,     2,    -8,    -2,    -8,    -2,
 +      -8,    -8
  };
  static const yytype_uint8 yydefact[] =
  {
         3,     0,     0,     2,     0,     0,     1,     3,     4,     3,
         6,     5
  };
 -static const yytype_int8 yydefgoto[] =
 -{
 -      -1,     2,     3,     4,     8
 -};
 -static const yytype_int8 yypact[] =
 -{
 -      -2,    -1,     4,    -8,     0,     2,    -8,    -2,    -8,    -2,
 -      -8,    -8
 -};
  static const yytype_int8 yypgoto[] =
  {
        -8,    -7,    -8,    -8,    -8
  };
 +static const yytype_int8 yydefgoto[] =
 +{
 +      -1,     2,     3,     4,     8
 +};
  static const yytype_uint8 yytable[] =
  {
        10,     1,    11,     5,     6,     0,     7,     9
@@@ -803,14 -820,6 +803,14 @@@ static const yytype_uint8 yystos[] 
         0,     3,     8,     9,    10,     4,     0,     6,    11,     5,
         8,     8
  };
 +static const yytype_uint8 yyr1[] =
 +{
 +       0,     7,     8,     9,     9,    10,    11
 +};
 +static const yytype_uint8 yyr2[] =
 +{
 +       0,     2,     1,     0,     2,     4,     2
 +};
  ]])
  
  AT_CLEANUP
@@@ -930,11 -939,11 +930,11 @@@ AT_CHECK_DANCER([%skeleton "lalr1.cc"]
  # --------------------------------
  m4_define([_AT_DATA_EXPECT2_Y],
  [AT_DATA_GRAMMAR([expect2.y],
 -[[%{
 -static int yylex (]AT_LALR1_CC_IF([int *], [void]));
 -AT_LALR1_CC_IF([],
 -[[#include <stdio.h>
 -#include <stdlib.h>
 +[%{
 +static int yylex (AT_LALR1_CC_IF([int *], [void]));
 +AT_LALR1_CC_IF([[#include <cstdlib>]],
 +[[#include <stdlib.h>
 +#include <stdio.h>
  ]AT_YYERROR_DECLARE])[
  %}
  $1
@@@ -1029,7 -1038,7 +1029,7 @@@ AT_DATA_GRAMMAR([input.y]
  start:
    {
      printf ("Bison would once convert this action to a midrule because of the"
 -          " subsequent braced code.\n");
 +            " subsequent braced code.\n");
    }
    ;
  
@@@ -1116,8 -1125,8 +1116,8 @@@ a: 'a' 
  ]])
  
  AT_BISON_CHECK([[--report=all input.y]])
- AT_CHECK([[sed -n '/^state 1$/,/^state 2$/p' input.output]], [[0]],
- [[state 1
+ AT_CHECK([[sed -n '/^State 1$/,/^State 2$/p' input.output]], [[0]],
+ [[State 1
  
      2 start: 'a' . a 'a'
      3 a: . 'a'
      a  go to state 5
  
  
state 2
State 2
  ]])
  
  AT_CLEANUP
@@@ -1182,8 -1191,8 +1182,8 @@@ main (void
  AT_BISON_OPTION_POPDEFS
  
  AT_BISON_CHECK([[-o input.c input.y]], [[0]],,
 -[[input.y:23.5-19: warning: rule useless in parser due to conflicts: start: start
 -input.y:27.5-19: warning: rule useless in parser due to conflicts: sr_conflict: TK2 "tok alias"
 +[[input.y:23.5-19: warning: rule useless in parser due to conflicts: start: start [-Wother]
 +input.y:27.5-19: warning: rule useless in parser due to conflicts: sr_conflict: TK2 "tok alias" [-Wother]
  ]])
  AT_COMPILE([[input]])
  AT_PARSER_CHECK([[./input]])
@@@ -1201,9 -1210,8 +1201,9 @@@ AT_CLEANU
  
  AT_SETUP([[parse-gram.y: LALR = IELR]])
  
 -# Avoid differences in synclines by telling bison that the output files
 -# have the same name.
 +# Avoid tests/bison's dark magic by processing a local copy of the
 +# grammar.  Avoid differences in synclines by telling bison that the
 +# output files have the same name.
  [cp $abs_top_srcdir/src/parse-gram.y input.y]
  AT_BISON_CHECK([[-o input.c -Dlr.type=lalr input.y]])
  [mv input.c lalr.c]
@@@ -1217,11 -1225,11 +1217,11 @@@ AT_CLEANU
  
  
  
 -## --------------------------------------- ##
 -## %error-verbose and YYSTACK_USE_ALLOCA.  ##
 -## --------------------------------------- ##
 +## -------------------------------------------- ##
 +## parse.error=verbose and YYSTACK_USE_ALLOCA.  ##
 +## -------------------------------------------- ##
  
 -AT_SETUP([[%error-verbose and YYSTACK_USE_ALLOCA]])
 +AT_SETUP([[parse.error=verbose and YYSTACK_USE_ALLOCA]])
  
  AT_BISON_OPTION_PUSHDEFS
  AT_DATA_GRAMMAR([input.y],
    #define YYSTACK_USE_ALLOCA 1
  }
  
 -%error-verbose
 +%define parse.error verbose
  
  %%
  
@@@ -1265,9 -1273,9 +1265,9 @@@ syntax_error
  %%
  
  ]AT_YYERROR_DEFINE[
 -/* Induce two syntax error messages (which requires full error
 -   recovery by shifting 3 tokens) in order to detect any loss of the
 -   reallocated buffer.  */
 +  /* Induce two syntax error messages (which requires full error
 +     recovery by shifting 3 tokens) in order to detect any loss of the
 +     reallocated buffer.  */
  ]AT_YYLEX_DEFINE(["abc"])[
  int
  main (void)
@@@ -1288,9 -1296,9 +1288,9 @@@ AT_CLEANU
  
  
  
 -## ------------------------- ##
 -## %error-verbose overflow.  ##
 -## ------------------------- ##
 +## ------------------------------ ##
 +## parse.error=verbose overflow.  ##
 +## ------------------------------ ##
  
  # Imagine the case where YYSTACK_ALLOC_MAXIMUM = YYSIZE_MAXIMUM and an
  # invocation of yysyntax_error has caused yymsg_alloc to grow to exactly
  # size calculation would return YYSIZE_MAXIMUM to yyparse.  Then,
  # yyparse would invoke yyerror using the old contents of yymsg.
  
 -AT_SETUP([[%error-verbose overflow]])
 +AT_SETUP([[parse.error=verbose overflow]])
 +
  AT_BISON_OPTION_PUSHDEFS
  AT_DATA_GRAMMAR([input.y],
  [[%code {
    #define YYMAXDEPTH 100
  }
  
 -%error-verbose
 +%define parse.error verbose
  
  %%
  
@@@ -1374,8 -1381,8 +1374,8 @@@ syntax_error2
  %%
  
  ]AT_YYERROR_DEFINE[
 -/* Induce two syntax error messages (which requires full error
 -   recovery by shifting 3 tokens).  */
 +  /* Induce two syntax error messages (which requires full error
 +     recovery by shifting 3 tokens).  */
  ]AT_YYLEX_DEFINE(["abc"])[
  int
  main (void)
@@@ -1425,7 -1432,7 +1425,7 @@@ AT_DATA_GRAMMAR([input.y]
  }
  
  ]$1[
 -%error-verbose
 +%define parse.error verbose
  %token 'c'
  
  %%
@@@ -1461,7 -1468,7 +1461,7 @@@ main (void
  AT_BISON_CHECK([[-Dparse.lac=full -Dparse.lac.es-capacity-initial=1 \
                   -Dparse.lac.memory-trace=full \
                   -t -o input.c input.y]], [[0]], [],
 -[[input.y: conflicts: 21 shift/reduce
 +[[input.y: warning: 21 shift/reduce conflicts [-Wconflicts-sr]
  ]])
  AT_COMPILE([[input]])
  AT_PARSER_CHECK([[./input > stdout.txt 2> stderr.txt]], [[1]])
@@@ -1537,7 -1544,7 +1537,7 @@@ main (void
  
  AT_BISON_CHECK([[-Dparse.lac=full -Dparse.lac.es-capacity-initial=1 \
                   -t -o input.c input.y]], [[0]], [],
 -[[input.y: conflicts: 8 shift/reduce
 +[[input.y: warning: 8 shift/reduce conflicts [-Wconflicts-sr]
  ]])
  AT_COMPILE([[input]])
  AT_BISON_OPTION_POPDEFS