fix a bug with \\ handling just before the end of a string constant

This commit is contained in:
Bill Currie 2003-03-04 17:03:49 +00:00
parent 2310e94df8
commit 4de6a20856
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ m ([\-+]?)
}
@ return '@';
\"(\\.|[^"])*\" {
\"(\\.|[^"\\])*\" {
yylval.string_val = make_string (yytext);
return STRING_VAL;
}