Allow \r in strings

Fixes #484
This commit is contained in:
ISSOtm
2020-02-17 13:52:38 +01:00
parent 5fd38c5f67
commit 9e99db9a8e

View File

@@ -734,6 +734,9 @@ static void yylex_ReadQuotedString(void)
case 'n':
ch = '\n';
break;
case 'r':
ch = '\r';
break;
case 't':
ch = '\t';
break;