Use base.select instead of just select

This commit is contained in:
mpeterv 2016-02-11 15:53:53 +03:00
parent a7f21e8ec4
commit 3c3a5d0011

View File

@ -43,7 +43,7 @@ end
-- (thanks to Wim Couwenberg) -- (thanks to Wim Couwenberg)
function filter.chain(...) function filter.chain(...)
local arg = {...} local arg = {...}
local n = select('#',...) local n = base.select('#',...)
local top, index = 1, 1 local top, index = 1, 1
local retry = "" local retry = ""
return function(chunk) return function(chunk)