mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
03bec1a290
3 changed files with 5 additions and 3 deletions
|
@ -16,7 +16,8 @@ local math_max, rep = math.max, string.rep;
|
|||
local os_date = os.date;
|
||||
local getstyle, getstring = require "util.termcolours".getstyle, require "util.termcolours".getstring;
|
||||
local tostring = tostring;
|
||||
local select, unpack = select, table.unpack or unpack;
|
||||
local select = select;
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||
|
||||
local config = require "core.configmanager";
|
||||
local logger = require "util.logger";
|
||||
|
|
|
@ -23,7 +23,7 @@ local ipairs, pairs, select = ipairs, pairs, select;
|
|||
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;
|
||||
|
|
|
@ -23,7 +23,8 @@ local setmetatable, rawget = setmetatable, rawget;
|
|||
local ipairs, pairs, type, tostring, t_insert = ipairs, pairs, type, tostring, table.insert;
|
||||
|
||||
local debug_traceback = debug.traceback;
|
||||
local unpack, select = unpack, select;
|
||||
local select = select;
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||
local pcall = function(f, ...)
|
||||
local n = select("#", ...);
|
||||
local params = {...};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue