# HG changeset patch # User Kim Alvefur # Date 1479636910 -3600 # Node ID da54ad64f6dac8d104858980c24f4ee3cb16f924 # Parent 29c20eefa3063dfa04101a17f47082b0b67a247f util.envload: Ignore use of Lua 5.1-only setfenv function [luacheck] diff -r 29c20eefa306 -r da54ad64f6da util/envload.lua --- 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;