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 | e1a956fc242ba18aaad6ba4c1162eb565c5c91ce (patch) | |
tree | 081ca53626d47d59212d92bae6f7147b951de71f /util | |
parent | bbb91af188a026dad2dae1915d9ae2ba20daaf02 (diff) | |
download | prosody-e1a956fc242ba18aaad6ba4c1162eb565c5c91ce.tar.gz prosody-e1a956fc242ba18aaad6ba4c1162eb565c5c91ce.zip |
util.envload: Ignore use of Lua 5.1-only setfenv function [luacheck]
Diffstat (limited to 'util')
-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; |