mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
loggingmanager,modulemanager,moduleapi: Localize unpack compatible with Lua 5.2+
This commit is contained in:
parent
68d19b7be1
commit
bad300a675
2 changed files with 4 additions and 2 deletions
|
@ -19,7 +19,8 @@ local st = require "util.stanza";
|
||||||
|
|
||||||
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 unpack = table.unpack or unpack;
|
||||||
local tonumber, tostring = tonumber, tostring;
|
local tonumber, tostring = tonumber, tostring;
|
||||||
local require = require;
|
local require = require;
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,8 @@ local setmetatable, rawget = setmetatable, rawget;
|
||||||
local ipairs, pairs, type, tostring, t_insert = ipairs, pairs, type, tostring, table.insert;
|
local ipairs, pairs, type, tostring, t_insert = ipairs, pairs, type, tostring, table.insert;
|
||||||
|
|
||||||
local debug_traceback = debug.traceback;
|
local debug_traceback = debug.traceback;
|
||||||
local unpack, select = unpack, select;
|
local select = select;
|
||||||
|
local unpack = table.unpack or unpack;
|
||||||
local pcall = function(f, ...)
|
local pcall = function(f, ...)
|
||||||
local n = select("#", ...);
|
local n = select("#", ...);
|
||||||
local params = {...};
|
local params = {...};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue