diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-23 20:51:38 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-23 20:51:38 +0100 |
commit | f343fc6a4d887cf2573673e660aff17d3d67f0d3 (patch) | |
tree | 388f609b57404d59a51b007a31c25a2002fdc51a | |
parent | 28c16a7f5bb8f9cf8cd4f1fa69290fc7a413e44b (diff) | |
download | prosody-f343fc6a4d887cf2573673e660aff17d3d67f0d3.tar.gz prosody-f343fc6a4d887cf2573673e660aff17d3d67f0d3.zip |
util.envload: Ignore "undefined variable" warning for loadstring [luacheck with strict 5.2 or 5.3 checks]
-rw-r--r-- | util/envload.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/envload.lua b/util/envload.lua index 926f20c0..6182a1f9 100644 --- a/util/envload.lua +++ b/util/envload.lua @@ -4,7 +4,7 @@ -- This project is MIT/X11 licensed. Please see the -- COPYING file in the source package for more information. -- --- luacheck: ignore 113/setfenv +-- luacheck: ignore 113/setfenv 113/loadstring local load, loadstring, setfenv = load, loadstring, setfenv; local io_open = io.open; |