Fix escape sequence for double quotes

refs #8164
This commit is contained in:
Gunnar Beutner 2015-01-07 13:06:02 +01:00
parent 2cb9f3011d
commit f3e0c5f113
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ do { \
}
<STRING>\\n { yyextra->m_LexBuffer << "\n"; }
<STRING>\\\\ { yyextra->m_LexBuffer << "\\"; }
<STRING>\\\" { yyextra->m_LexBuffer << "\""; }
<STRING>\\t { yyextra->m_LexBuffer << "\t"; }
<STRING>\\r { yyextra->m_LexBuffer << "\r"; }
<STRING>\\b { yyextra->m_LexBuffer << "\b"; }