fix inadvertance error

This commit is contained in:
crabman77 2015-04-26 21:42:42 +02:00
parent ef530f7bb5
commit 5b03fd34f1
1 changed files with 1 additions and 1 deletions

View File

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