X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/cc2235ace2d91338663caeec288743092a6b3aeb..219458e22f163ede84daa71dfa98bab82a766954:/src/getargs.c diff --git a/src/getargs.c b/src/getargs.c index 97191ef3..7a637a20 100644 --- a/src/getargs.c +++ b/src/getargs.c @@ -196,8 +196,6 @@ ARGMATCH_VERIFY (report_args, report_types); static const char * const trace_args[] = { - /* In a series of synonyms, present the most meaningful first, so - that argmatch_valid be more readable. */ "none - no traces", "scan - grammar scanner traces", "parse - grammar parser traces", @@ -242,24 +240,22 @@ ARGMATCH_VERIFY (trace_args, trace_types); | --warnings's handling. | `------------------------*/ -static const char * const warnings_args[] = +const char * const warnings_args[] = { - /* In a series of synonyms, present the most meaningful first, so - that argmatch_valid be more readable. */ - "none - no warnings", - "midrule-values - unset or unused midrule values", - "yacc - incompatibilities with POSIX Yacc", - "conflicts-sr - S/R conflicts", - "conflicts-rr - R/R conflicts", - "deprecated - obsolete constructs", - "precedence - useless precedence and associativity", - "other - all other warnings", - "all - all of the above", - "error - warnings are errors", + "none", + "midrule-values", + "yacc", + "conflicts-sr", + "conflicts-rr", + "deprecated", + "precedence", + "other", + "all", + "error", 0 }; -static const int warnings_types[] = +const int warnings_types[] = { Wnone, Wmidrule_values,