diff options
author | Kim Alvefur <zash@zash.se> | 2016-11-20 11:15:10 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-11-20 11:15:10 +0100 |
commit | bd940f0f8cc76802ced47ed71c039186a225bc58 (patch) | |
tree | 081ca53626d47d59212d92bae6f7147b951de71f | |
parent | c3a4324ff10f956611014f1550124db6aabc4941 (diff) | |
download | prosody-bd940f0f8cc76802ced47ed71c039186a225bc58.tar.gz prosody-bd940f0f8cc76802ced47ed71c039186a225bc58.zip |
util.envload: Ignore use of Lua 5.1-only setfenv function [luacheck]
-rw-r--r-- | util/envload.lua | 1 |
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; |