mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-18 18:01:13 +00:00
fix a bug with \\ handling just before the end of a string constant
This commit is contained in:
parent
2310e94df8
commit
4de6a20856
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ m ([\-+]?)
|
|||
}
|
||||
@ return '@';
|
||||
|
||||
\"(\\.|[^"])*\" {
|
||||
\"(\\.|[^"\\])*\" {
|
||||
yylval.string_val = make_string (yytext);
|
||||
return STRING_VAL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue