aboutsummaryrefslogtreecommitdiffstats
path: root/core/moduleapi.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-02-18 14:57:51 +0100
committerKim Alvefur <zash@zash.se>2016-02-18 14:57:51 +0100
commite349fb9c87b903509fdef01fbb08e4b1871f96b5 (patch)
tree0b6205b026211531455525fc1a9d4f7d8c0f7368 /core/moduleapi.lua
parentbad300a675f079ccf45da6cbaf07e55be7ed85f0 (diff)
downloadprosody-e349fb9c87b903509fdef01fbb08e4b1871f96b5.tar.gz
prosody-e349fb9c87b903509fdef01fbb08e4b1871f96b5.zip
loggingmanager,modulemanager,moduleapi: Ignore warning about accessing _G.unpack [luacheck]
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r--core/moduleapi.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index 9a0c5223..402c7927 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -20,7 +20,7 @@ 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 = ipairs, pairs, select;
-local unpack = table.unpack or unpack;
+local unpack = table.unpack or unpack; --luacheck: ignore 113
local tonumber, tostring = tonumber, tostring;
local require = require;