# HG changeset patch # User Matthew Wild # Date 1431972426 -3600 # Node ID 4fecfc81dac1b968ac17603cc28389c74381bb71 # Parent 2b78754b0f1c06181c16783275b9f8d22787f882 configmanager: Rename unused function arguments [luacheck] diff -r 2b78754b0f1c -r 4fecfc81dac1 core/configmanager.lua --- a/core/configmanager.lua Mon May 18 19:06:34 2015 +0100 +++ b/core/configmanager.lua Mon May 18 19:07:06 2015 +0100 @@ -128,11 +128,11 @@ Host = true, host = true, VirtualHost = true, Component = true, component = true, Include = true, include = true, RunScript = true }, { - __index = function (t, k) + __index = function (_, k) return rawget(_G, k); end, - __newindex = function (t, k, v) - set(config, env.__currenthost or "*", k, v); + __newindex = function (_, k, v) + set(config_table, env.__currenthost or "*", k, v); end });