Minor formatting change to parse() func

pull/6/head
rxi 2015-08-15 10:41:39 +01:00
parent d1ebba043c
commit b51b7a53f7
1 changed files with 1 additions and 2 deletions

View File

@ -349,9 +349,8 @@ parse = function(str, idx)
local f = char_func_map[chr]
if f then
return f(str, idx, chr)
else
decode_error(str, idx, "unexpected character '" .. chr .. "'")
end
decode_error(str, idx, "unexpected character '" .. chr .. "'")
end