diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-10 17:47:11 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-10 17:47:11 +0100 |
commit | 0251f343054715fd750860ad537fa16a0419df65 (patch) | |
tree | 105402674b1ad12890bdc6f3dcd12118ce57591f /util/sql.lua | |
parent | 86358dd5745829fbc998109eedecf3964203fa83 (diff) | |
download | prosody-0251f343054715fd750860ad537fa16a0419df65.tar.gz prosody-0251f343054715fd750860ad537fa16a0419df65.zip |
util: Ignore some Lua 5.1 vs 5.2 compat things [luacheck]
Diffstat (limited to 'util/sql.lua')
-rw-r--r-- | util/sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sql.lua b/util/sql.lua index 1dd278eb..9648101a 100644 --- a/util/sql.lua +++ b/util/sql.lua @@ -1,6 +1,6 @@ local setmetatable, getmetatable = setmetatable, getmetatable; -local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113 +local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113 143 local tostring = tostring; local type = type; local assert, pcall, xpcall, debug_traceback = assert, pcall, xpcall, debug.traceback; |