mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-15 23:33:03 +00:00
* src/parse-skel.y: Get rid of the shift/reduce conflict:
replace `gb' with BLANKS. * src/scan-skel.l: Adjust.
This commit is contained in:
@@ -64,6 +64,12 @@
|
||||
return '\n';
|
||||
}
|
||||
|
||||
/* White spaces. */
|
||||
[\t ]+ {
|
||||
yylval.literal = yytext;
|
||||
return BLANKS;
|
||||
}
|
||||
|
||||
/* Plain Character. */
|
||||
. {
|
||||
yylval.character = *yytext;
|
||||
|
||||
Reference in New Issue
Block a user