ltlfilt: implement -q/--quiet as in grep

the existing -q/--quiet option is renamed to --ignore-errors

* src/bin/ltlfilt.cc: Adjust option.
* src/bin/common_output.cc, src/bin/common_output.hh: Add a
quiet_output.
* bench/dtgbasat/prepare.sh: Rename -q to --ignore-errors..
* src/ltltest/remove_x.test: Use -q.
* NEWS: Mention this change.
This commit is contained in:
Alexandre Duret-Lutz 2014-12-11 15:29:31 +01:00
parent 1e84bb1ee7
commit ac225c0ee9
6 changed files with 30 additions and 14 deletions

View file

@ -28,7 +28,8 @@
#include "common_output.hh"
enum output_format_t { spot_output, spin_output, utf8_output,
lbt_output, wring_output, latex_output };
lbt_output, wring_output, latex_output,
quiet_output };
extern output_format_t output_format;
extern bool full_parenth;
extern bool escape_csv;