aboutsummaryrefslogtreecommitdiff
path: root/src/jit/dump.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/jit/dump.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua
index e5871b8d..6c50a616 100644
--- a/src/jit/dump.lua
+++ b/src/jit/dump.lua
@@ -285,7 +285,6 @@ local function ctlsub(c)
285 if c == "\n" then return "\\n" 285 if c == "\n" then return "\\n"
286 elseif c == "\r" then return "\\r" 286 elseif c == "\r" then return "\\r"
287 elseif c == "\t" then return "\\t" 287 elseif c == "\t" then return "\\t"
288 elseif c == "\r" then return "\\r"
289 else return format("\\%03d", byte(c)) 288 else return format("\\%03d", byte(c))
290 end 289 end
291end 290end