mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
errors: indent "invalid value for %define" context
This is the continuation of the work on the readability of errors
context.
For example, what used to be:
input.y:1.9-29: invalid value for %define variable 'foo' : 'bar'
input.y:1.9-29: accepted value: 'most'
is now:
input.y:1.9-29: invalid value for %define variable 'foo' : 'bar'
input.y:1.9-29: accepted value: 'most'
* src/muscle-tab.c (muscle_percent_define_check_values): Use
complain_at_indent to output with increased indentation level.
* tests/input:at: Apply this change.
Signed-off-by: Akim Demaille <akim@lrde.epita.fr>
This commit is contained in:
committed by
Akim Demaille
parent
6b1e1872d4
commit
a974c1ec26
@@ -1033,12 +1033,13 @@ start: ;
|
||||
]])
|
||||
AT_BISON_CHECK([[input.y]], [[1]], [[]],
|
||||
[[input.y:1.9-29: invalid value for %define variable 'lr.default-reductions': 'bogus'
|
||||
input.y:1.9-29: accepted value: 'most'
|
||||
input.y:1.9-29: accepted value: 'consistent'
|
||||
input.y:1.9-29: accepted value: 'accepting'
|
||||
input.y:1.9-29: accepted value: 'most'
|
||||
input.y:1.9-29: accepted value: 'consistent'
|
||||
input.y:1.9-29: accepted value: 'accepting'
|
||||
]])
|
||||
|
||||
# Back-end.
|
||||
# FIXME: these should be indented, but we shouldn't mess with the m4 yet
|
||||
AT_DATA([[input.y]],
|
||||
[[%define api.push-pull neither
|
||||
%%
|
||||
|
||||
Reference in New Issue
Block a user