Diff

util/sql.lua @ 8389:5d866eb8f18f

util: Ignore some Lua 5.1 vs 5.2 compat things [luacheck]
author Kim Alvefur <zash@zash.se>
date Fri, 10 Nov 2017 17:47:11 +0100
parent 8382:e5d00bf4a4d5
child 8555:4f0f5b49bb03
line wrap: on
line diff
--- a/util/sql.lua	Thu Nov 09 17:27:52 2017 +0100
+++ b/util/sql.lua	Fri Nov 10 17:47:11 2017 +0100
@@ -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;