From 9bb29889b4edd5cef29779e3381468a694563296 Mon Sep 17 00:00:00 2001 From: Alexander Weber Date: Sun, 22 Jan 2017 10:00:56 +0100 Subject: [PATCH] global_variables: move newproxy to the first blacklist as an (undocumented) part of Lua-5.1 --- checks/global_variables.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/checks/global_variables.lua b/checks/global_variables.lua index 567880d..74a9e88 100644 --- a/checks/global_variables.lua +++ b/checks/global_variables.lua @@ -50,6 +50,9 @@ local blacklist = { string = true, table = true, + -- undocumented / deprecated in Lua 5.1 + newproxy = true, + -- minetest related needed globals minetest = true, core = true, @@ -78,7 +81,6 @@ local second_blacklist = { nodeupdate = true, check_attached_node = true, drop_attached_node = true, - newproxy = true, get_last_folder = true, spawn_falling_node = true, on_dignode = true,