mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
core.moduleapi: Fix some global accesses.
This commit is contained in:
parent
f725efa472
commit
37895d0d71
1 changed files with 3 additions and 2 deletions
|
@ -16,8 +16,10 @@ local timer = require "util.timer";
|
||||||
|
|
||||||
local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat;
|
local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat;
|
||||||
local error, setmetatable, type = error, setmetatable, type;
|
local error, setmetatable, type = error, setmetatable, type;
|
||||||
local ipairs, pairs, select, unpack = ipairs, pairs, select, unpack;
|
local ipairs, pairs, select = ipairs, pairs, select;
|
||||||
local tonumber, tostring = tonumber, tostring;
|
local tonumber, tostring = tonumber, tostring;
|
||||||
|
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 prosody = prosody;
|
local prosody = prosody;
|
||||||
local hosts = prosody.hosts;
|
local hosts = prosody.hosts;
|
||||||
|
@ -364,7 +366,6 @@ local function timer_callback(now, id, t)
|
||||||
return t.callback(now, unpack(t, 1, t.n));
|
return t.callback(now, unpack(t, 1, t.n));
|
||||||
end
|
end
|
||||||
|
|
||||||
local pack = table.pack or function(...) return {n=select("#",...), ...}; end
|
|
||||||
function api:add_timer(delay, callback, ...)
|
function api:add_timer(delay, callback, ...)
|
||||||
local t = pack(...)
|
local t = pack(...)
|
||||||
t.module_env = self;
|
t.module_env = self;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue