mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
compat: Remove handling of Lua 5.1 location of 'unpack' function
This commit is contained in:
parent
d055a704d8
commit
5251c9b686
17 changed files with 17 additions and 17 deletions
|
@ -27,7 +27,7 @@ local ipairs, pairs, select = ipairs, pairs, select;
|
|||
local tonumber, tostring = tonumber, tostring;
|
||||
local require = require;
|
||||
local pack = table.pack or require "util.table".pack; -- table.pack is only in 5.2
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113 -- renamed in 5.2
|
||||
local unpack = table.unpack;
|
||||
|
||||
local prosody = prosody;
|
||||
local hosts = prosody.hosts;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue