renamed lex to pre_process

This commit is contained in:
yago 2015-04-12 20:13:52 +02:00
parent 1e18d97034
commit 883f31e73a

View File

@ -62,6 +62,7 @@ end
function lex(msg)
if msg.text then
local text = msg.text
local chat_id = tostring(msg.to.id)
local s, e = text:find("%$%a+")
@ -76,6 +77,7 @@ function lex(msg)
msg.text = text:sub(0, s - 1) .. value .. text:sub(e + 1)
end
end
return msg
end
@ -87,6 +89,6 @@ return {
"^!get (%a+)$",
"^!get$"},
run = run,
lex = lex
pre_process = lex
}