+ In the case of warnings treated as errors, the suffix is displayed, in a
+ manner similar to gcc, as [-Werror=CATEGORY]. Also, the prefix is changed
+ from "warning: " to "error: ".
+
+ For instance, considering the above change, an output for -Werror=other
+ would have been:
+
+ bison: warnings being treated as errors
+ input.y:1.1: warning: stray ',' treated as white space [-Wother]
+
+ But it is actually:
+
+ bison: warnings being treated as errors
+ input.y:1.1: error: stray ',' treated as white space [-Werror=other]
+
+*** Deprecated constructs
+
+ The new 'deprecated' warning category flags obsolete constructs whose
+ support will be discontinued. It is enabled by default. These warnings
+ used to be reported as 'other' warnings.
+