bat: metatable bugfix after lua52 port

This commit is contained in:
Adrian C. (anrxc) 2012-06-18 02:01:29 +02:00
parent e929bea270
commit 80d523ad93
1 changed files with 1 additions and 1 deletions

View File

@ -87,4 +87,4 @@ local function worker(format, warg)
end
-- }}}
return setmetatable(mt, { __call = function(_, ...) return worker(...) end })
return setmetatable(bat, { __call = function(_, ...) return worker(...) end })