Software /
code /
prosody
Diff
core/moduleapi.lua @ 7164:af26e8eb591f
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 18 Feb 2016 15:00:17 +0100 |
parent | 7142:67226eaef97c |
parent | 7163:eadbf19d0de0 |
child | 7343:1da5a710848d |
line wrap: on
line diff
--- a/core/moduleapi.lua Thu Feb 18 13:49:19 2016 +0000 +++ b/core/moduleapi.lua Thu Feb 18 15:00:17 2016 +0100 @@ -23,7 +23,7 @@ local tonumber, tostring = tonumber, tostring; local require = require; local pack = table.pack or function(...) return {n=select("#",...), ...}; end -- table.pack is only in 5.2 -local unpack = table.unpack or unpack; -- renamed in 5.2 +local unpack = table.unpack or unpack; --luacheck: ignore 113 -- renamed in 5.2 local prosody = prosody; local hosts = prosody.hosts;