Use base.select instead of just select
This commit is contained in:
parent
a7f21e8ec4
commit
3c3a5d0011
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue