Use base.select instead of just select

master
mpeterv 2016-02-11 15:53:53 +03:00
parent a7f21e8ec4
commit 3c3a5d0011
1 changed files with 1 additions and 1 deletions

View File

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