mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
tools/erlparse: Fix erlang string escape sequences.
This commit is contained in:
parent
4c408e8dfe
commit
d69fd55cf6
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ local function isSpace(ch)
|
|||
return ch <= _space;
|
||||
end
|
||||
|
||||
local escapes = {["\\b"]="\b", ["\\d"]="\d", ["\\e"]="\e", ["\\f"]="\f", ["\\n"]="\n", ["\\r"]="\r", ["\\s"]="\s", ["\\t"]="\t", ["\\v"]="\v", ["\\\""]="\"", ["\\'"]="'", ["\\\\"]="\\"};
|
||||
local escapes = {["\\b"]="\b", ["\\d"]="\127", ["\\e"]="\27", ["\\f"]="\f", ["\\n"]="\n", ["\\r"]="\r", ["\\s"]=" ", ["\\t"]="\t", ["\\v"]="\v", ["\\\""]="\"", ["\\'"]="'", ["\\\\"]="\\"};
|
||||
local function readString()
|
||||
read("\""); -- skip quote
|
||||
local slash = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue