1
0
mirror of https://github.com/minetest-mods/intllib.git synced 2025-02-13 10:10:17 +01:00

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

View File

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