* 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:
Akim Demaille
2001-12-30 21:06:36 +00:00
parent a4b36db458
commit 24fad99e2b
3 changed files with 24 additions and 6 deletions

View File

@@ -64,6 +64,12 @@
return '\n';
}
/* White spaces. */
[\t ]+ {
yylval.literal = yytext;
return BLANKS;
}
/* Plain Character. */
. {
yylval.character = *yytext;