Allow for '\"'

This commit is contained in:
gingerBill
2018-08-10 17:48:29 +01:00
parent 8be9b5082c
commit d0fc9aa069
2 changed files with 5 additions and 8 deletions

View File

@@ -462,9 +462,6 @@ bool unquote_char(String s, u8 quote, Rune *rune, bool *multiple_bytes, String *
case '\'':
case '"':
if (c != quote) {
return false;
}
*rune = c;
break;