(declaration): Use enum "report_states" rather

than its numeric value 1.
This commit is contained in:
Paul Eggert
2002-12-26 06:51:42 +00:00
parent 88015bf06b
commit 9dd5b37815

View File

@@ -189,7 +189,7 @@ declaration:
| "%pure-parser" { pure_parser = 1; }
| "%skeleton" string_content { skeleton = $2; }
| "%token-table" { token_table_flag = 1; }
| "%verbose" { report_flag = 1; }
| "%verbose" { report_flag = report_states; }
| "%yacc" { yacc_flag = 1; }
| ";"
;