From: Paul Eggert Date: Thu, 26 Dec 2002 06:51:42 +0000 (+0000) Subject: (declaration): Use enum "report_states" rather X-Git-Tag: BISON-1_875~36 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/9dd5b37815e95c3c48e63f48489ced76e79acf42 (declaration): Use enum "report_states" rather than its numeric value 1. --- diff --git a/src/parse-gram.y b/src/parse-gram.y index e8863018..c5d8024f 100644 --- a/src/parse-gram.y +++ b/src/parse-gram.y @@ -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; } | ";" ;