util.iterators: Don't replace var, as we should preserve var from the original iterator [luacheck]

This commit is contained in:
Matthew Wild 2016-03-10 17:48:53 +00:00
parent b1279bc9a5
commit e5d07c158f

View file

@ -154,7 +154,7 @@ end
-- Convert the values returned by an iterator to an array
function it.to_array(f, s, var)
local t, var = {};
local t = {};
while true do
var = f(s, var);
if var == nil then break; end