Software /
code /
prosody
Changeset
7728:da54ad64f6da
util.envload: Ignore use of Lua 5.1-only setfenv function [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 20 Nov 2016 11:15:10 +0100 |
parents | 7726:29c20eefa306 |
children | 7729:f8b81a82e8b6 |
files | util/envload.lua |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/util/envload.lua Sat Nov 19 17:34:54 2016 +0100 +++ b/util/envload.lua Sun Nov 20 11:15:10 2016 +0100 @@ -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;