diagnostics: improve -fcaret for list of accepted values
authorAkim Demaille <akim@lrde.epita.fr>
Sat, 15 Dec 2012 20:54:27 +0000 (21:54 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Sun, 16 Dec 2012 14:16:42 +0000 (15:16 +0100)
commitea9e670d728ac659e139434de31ea9306ecdd117
tree836bafe2f33b8f15e53e0b76104978f4059a4d5a
parentbcd80897f3b414973fc34dc2ec57ce4df2e69253
diagnostics: improve -fcaret for list of accepted values

Instead of

  input.y:1.9-21: error: invalid value for %define variable 'api.push-pull': 'neither'
   %define api.push_pull "neither"
           ^^^^^^^^^^^^^
  input.y:1.9-21:     accepted value: 'pull'
   %define api.push_pull "neither"
           ^^^^^^^^^^^^^
  input.y:1.9-21:     accepted value: 'push'
   %define api.push_pull "neither"
           ^^^^^^^^^^^^^
  input.y:1.9-21:     accepted value: 'both'
   %define api.push_pull "neither"
           ^^^^^^^^^^^^^

report

  input.y:1.9-21: error: invalid value for %define variable 'api.push-pull': 'neither'
   %define api.push_pull "neither"
           ^^^^^^^^^^^^^
  input.y:1.9-21:     accepted value: 'pull'
  input.y:1.9-21:     accepted value: 'push'
  input.y:1.9-21:     accepted value: 'both'

* src/complain.h (no_caret): New.
* src/complain.c (error_message): Use it.
* src/muscle-tab.c (muscle_percent_define_check_values): Use it.
* src/scan-skel.l (flag): Ditto.
* tests/input.at: Adjust and check.
src/complain.c
src/complain.h
src/muscle-tab.c
src/scan-skel.l
tests/input.at