Remove '=' from escape table (Unfound escapes work)

This commit is contained in:
ShadowNinja 2013-10-29 19:06:49 -04:00
parent abb257aae3
commit 377dc784cd
1 changed files with 0 additions and 1 deletions

View File

@ -2,7 +2,6 @@
local escapes = {
["\\"] = "\\",
["n"] = "\n",
["="] = "=",
}
local function unescape(s)