From 77ebe2fb2a7f6508437f1560af031eb8abd4672b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 29 Aug 2018 19:49:06 -0700 Subject: [PATCH] Fix for "\000123" getting compiled to Lua as "\0123" --- utils.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.lua b/utils.lua index 218a644..d45dd2d 100644 --- a/utils.lua +++ b/utils.lua @@ -55,7 +55,7 @@ local function repr(x, mt_behavior) local escaped = gsub(x, "\\", "\\\\") escaped = gsub(escaped, "\n", "\\n") escaped = gsub(escaped, '"', '\\"') - escaped = gsub(escaped, "[%c%z]", function(c) return "\\"..c:byte() end) + escaped = gsub(escaped, "[%c%z]", function(c) return ("\\%03d"):format(c:byte()) end) return '"'..escaped..'"' else return tostring(x)