util.iterators: Localize unpack() in Lua 5.2 compatible way

This commit is contained in:
Kim Alvefur 2016-02-22 17:38:46 +01:00
parent 792b0e8d79
commit a2c0f6d645

View file

@ -11,7 +11,8 @@
local it = {};
local t_insert = table.insert;
local select, unpack, next = select, unpack, next;
local select, next = select, next;
local unpack = table.unpack or unpack; --luacheck: ignore 113
local function pack(...) return { n = select("#", ...), ... }; end
-- Reverse an iterator