From bad300a675f079ccf45da6cbaf07e55be7ed85f0 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 18 Feb 2016 14:57:04 +0100 Subject: loggingmanager,modulemanager,moduleapi: Localize unpack compatible with Lua 5.2+ --- core/moduleapi.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/moduleapi.lua') diff --git a/core/moduleapi.lua b/core/moduleapi.lua index 573f3153..9a0c5223 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -19,7 +19,8 @@ local st = require "util.stanza"; local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat; local error, setmetatable, type = error, setmetatable, type; -local ipairs, pairs, select, unpack = ipairs, pairs, select, unpack; +local ipairs, pairs, select = ipairs, pairs, select; +local unpack = table.unpack or unpack; local tonumber, tostring = tonumber, tostring; local require = require; -- cgit v1.2.3