aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-11-20 11:15:10 +0100
committerKim Alvefur <zash@zash.se>2016-11-20 11:15:10 +0100
commitbd940f0f8cc76802ced47ed71c039186a225bc58 (patch)
tree081ca53626d47d59212d92bae6f7147b951de71f /util
parentc3a4324ff10f956611014f1550124db6aabc4941 (diff)
downloadprosody-bd940f0f8cc76802ced47ed71c039186a225bc58.tar.gz
prosody-bd940f0f8cc76802ced47ed71c039186a225bc58.zip
util.envload: Ignore use of Lua 5.1-only setfenv function [luacheck]
Diffstat (limited to 'util')
-rw-r--r--util/envload.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/envload.lua b/util/envload.lua
index 53e28348..3c5190df 100644
--- a/util/envload.lua
+++ b/util/envload.lua
@@ -4,6 +4,7 @@
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--
+-- luacheck: ignore 113/setfenv
local load, loadstring, loadfile, setfenv = load, loadstring, loadfile, setfenv;
local envload;