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

This commit is contained in:
Kim Alvefur 2016-02-22 17:37:55 +01:00
parent 847ba75e55
commit 792b0e8d79

View file

@ -8,6 +8,7 @@
local unpack = table.unpack or unpack; --luacheck: ignore 113
local t_insert = table.insert;
function import(module, ...)
local m = package.loaded[module] or require(module);