removed ineffectual entry in controlCharsTranslation

This commit is contained in:
Kodi Arfer 2014-01-07 09:20:31 -05:00
parent a5291a2a2c
commit 588486afde

View File

@ -39,7 +39,7 @@ end
local controlCharsTranslation = { local controlCharsTranslation = {
["\a"] = "\\a", ["\b"] = "\\b", ["\f"] = "\\f", ["\n"] = "\\n", ["\a"] = "\\a", ["\b"] = "\\b", ["\f"] = "\\f", ["\n"] = "\\n",
["\r"] = "\\r", ["\t"] = "\\t", ["\v"] = "\\v", ["\\"] = "\\\\" ["\r"] = "\\r", ["\t"] = "\\t", ["\v"] = "\\v"
} }
local function escapeChar(c) return controlCharsTranslation[c] end local function escapeChar(c) return controlCharsTranslation[c] end