Mercurial > prosody-hg
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 |
| parents | d0b64f1e4f5d |
| children | 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 = {...};
