mirror of
https://github.com/irmen/prog8.git
synced 2025-07-24 20:24:09 +00:00
recognise \t character (TAB) in string literals (note: only valid in iso encoding)
This commit is contained in:
@@ -58,6 +58,7 @@ fun String.unescape(): String {
|
||||
'\\' -> '\\'
|
||||
'n' -> '\n'
|
||||
'r' -> '\r'
|
||||
't' -> '\t'
|
||||
'"' -> '"'
|
||||
'\'' -> '\''
|
||||
'u' -> {
|
||||
|
Reference in New Issue
Block a user