Software /
code /
prosody
Diff
core/modulemanager.lua @ 7163:eadbf19d0de0
loggingmanager,modulemanager,moduleapi: Ignore warning about accessing _G.unpack [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 18 Feb 2016 14:57:51 +0100 |
parent | 7162:d0b64f1e4f5d |
child | 7303:439d00063620 |
line wrap: on
line diff
--- a/core/modulemanager.lua Thu Feb 18 14:57:04 2016 +0100 +++ b/core/modulemanager.lua Thu Feb 18 14:57:51 2016 +0100 @@ -24,7 +24,7 @@ local debug_traceback = debug.traceback; local select = select; -local unpack = table.unpack or unpack; +local unpack = table.unpack or unpack; --luacheck: ignore 113 local pcall = function(f, ...) local n = select("#", ...); local params = {...};