1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-27 15:00:35 +02:00

fix inadvertance error

This commit is contained in:
crabman77 2015-04-26 21:42:42 +02:00
parent ef530f7bb5
commit 5b03fd34f1

View File

@ -19,7 +19,7 @@ local function subaccent(text)
for _, c in pairs(accent_chars) do for _, c in pairs(accent_chars) do
text = text:gsub(c[1], c[2]) text = text:gsub(c[1], c[2])
end end
return text:gsub(stripped_chars, "") return text
end end
-- TODO: Add proper conversion from CP1252 to UTF-8. -- TODO: Add proper conversion from CP1252 to UTF-8.