Software /
code /
prosody
Changeset
8416:bc9cb23b604a
util.envload: Ignore "undefined variable" warning for loadstring [luacheck with strict 5.2 or 5.3 checks]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 23 Nov 2017 20:51:38 +0100 |
parents | 8415:e1b05f9c1ea5 |
children | 8417:e88db5668cfb |
files | util/envload.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util/envload.lua Thu Nov 23 17:42:48 2017 +0100 +++ b/util/envload.lua Thu Nov 23 20:51:38 2017 +0100 @@ -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;