]> git.saurik.com Git - bison.git/commitdiff
diagnostics: treat obsolete %define variable names as obsolete directives
authorAkim Demaille <akim@lrde.epita.fr>
Sat, 15 Dec 2012 21:14:16 +0000 (22:14 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Sun, 23 Dec 2012 09:27:40 +0000 (10:27 +0100)
Instead of

  warning: deprecated %define variable name: 'namespace', use 'api.namespace' [-Wdeprecated]

display (in -fno-caret mode):

  warning: deprecated directive: '%define namespace foo', use '%define api.namespace foo' [-Wdeprecated]

and (in -fcaret mode):

  warning: deprecated directive, use '%define api.namespace toto' [-Wdeprecated]
   %define namespace toto
           ^^^^^^^^^

This is in preparation of cases where not only the variable is
renamed, but the values are too:

  warning: deprecated directive: '%define variant', use '%define api.value.type variant' [-Wdeprecated]

* src/muscle-tab.c (define_directive): New.
(muscle_percent_variable_update): Take the value as argument, and use it
in the diagnostics.
Loop with a pointer instead of an index.
* tests/input.at (%define backward compatibility): Adjust.


No differences found