Remove redundant code in jit/*.lua.

This commit is contained in:
Mike Pall 2013-01-11 12:30:10 +01:00
parent f0a0a23533
commit 8a3be5da74
2 changed files with 0 additions and 2 deletions

View File

@ -58,7 +58,6 @@ local function ctlsub(c)
if c == "\n" then return "\\n" if c == "\n" then return "\\n"
elseif c == "\r" then return "\\r" elseif c == "\r" then return "\\r"
elseif c == "\t" then return "\\t" elseif c == "\t" then return "\\t"
elseif c == "\r" then return "\\r"
else return format("\\%03d", byte(c)) else return format("\\%03d", byte(c))
end end
end end

View File

@ -285,7 +285,6 @@ local function ctlsub(c)
if c == "\n" then return "\\n" if c == "\n" then return "\\n"
elseif c == "\r" then return "\\r" elseif c == "\r" then return "\\r"
elseif c == "\t" then return "\\t" elseif c == "\t" then return "\\t"
elseif c == "\r" then return "\\r"
else return format("\\%03d", byte(c)) else return format("\\%03d", byte(c))
end end
end end