The branch main has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=763bcebe0b6d5e53e5c8940a677de662e5652b6d
commit 763bcebe0b6d5e53e5c8940a677de662e5652b6d Author: Kyle Evans <[email protected]> AuthorDate: 2021-09-08 21:32:53 +0000 Commit: Kyle Evans <[email protected]> CommitDate: 2021-09-09 07:01:50 +0000 lualoader: remove shadowed local from graphics:drawitem() for loop vars are local already and distinct from this earlier declaration; remove it. --- stand/lua/drawer.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/stand/lua/drawer.lua b/stand/lua/drawer.lua index 6324c2262c11..b592b416033d 100644 --- a/stand/lua/drawer.lua +++ b/stand/lua/drawer.lua @@ -377,7 +377,6 @@ end local function drawitem(func) local console = loader.getenv("console") - local c for c in string.gmatch(console, "%w+") do loader.setenv("console", c) _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
