diff options
| author | gingerBill <bill@gingerbill.org> | 2018-08-10 17:48:29 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-08-10 17:48:29 +0100 |
| commit | d0fc9aa06941f3fcd08d4c74c5c139c54be9bc81 (patch) | |
| tree | bead39436d9aaec23562a982e29324ddf32b1482 /src/string.cpp | |
| parent | 8be9b5082cb8270df6af1ef2369c5990a2478f42 (diff) | |
Allow for '\"'
Diffstat (limited to 'src/string.cpp')
| -rw-r--r-- | src/string.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/string.cpp b/src/string.cpp index 8e770cd90..80a7180a2 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -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; |