forked from lix-project/lix
* Fix the interpretation of ''\<character> in indented strings.
This commit is contained in:
parent
cae4efdca3
commit
6f0f16497a
|
@ -137,7 +137,7 @@ inherit { return INHERIT; }
|
|||
return IND_STR;
|
||||
}
|
||||
<IND_STRING>\'\'\\. {
|
||||
yylval->e = new ExprIndStr(yytext + 2);
|
||||
yylval->e = unescapeStr(yytext + 2);
|
||||
return IND_STR;
|
||||
}
|
||||
<IND_STRING>\$\{ { BEGIN(INITIAL); return DOLLAR_CURLY; }
|
||||
|
|
Loading…
Reference in a new issue