summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowNinja <noreply@gmail.com>2013-10-29 19:06:49 -0400
committerShadowNinja <noreply@gmail.com>2013-10-29 19:06:49 -0400
commit377dc784cde739369b1967d84bc6bc786ee4aa9d (patch)
tree5aff662e227c2ae8afecac748a6a227239ffc082
parentabb257aae33b7c794eb7fcb604f2464684aed176 (diff)
Remove '=' from escape table (Unfound escapes work)
-rw-r--r--lib.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib.lua b/lib.lua
index 1268b04..db6de0d 100644
--- a/lib.lua
+++ b/lib.lua
@@ -2,7 +2,6 @@
local escapes = {
["\\"] = "\\",
["n"] = "\n",
- ["="] = "=",
}
local function unescape(s)