Date: Thu, 22 Feb 2018 04:30:52 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329811 - head/stand/lua Message-ID: <201802220430.w1M4UqL9029865@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevans Date: Thu Feb 22 04:30:52 2018 New Revision: 329811 URL: https://svnweb.freebsd.org/changeset/base/329811 Log: lualoader: Clear up an empty conditional branch We will likely uncomment this whole monster in the near future. Modified: head/stand/lua/config.lua Modified: head/stand/lua/config.lua ============================================================================== --- head/stand/lua/config.lua Thu Feb 22 04:28:52 2018 (r329810) +++ head/stand/lua/config.lua Thu Feb 22 04:30:52 2018 (r329811) @@ -260,10 +260,10 @@ function config.loadmod(mod, silent) end end - else - -- if not silent then - -- print("Skipping module '". . k .. "'") - -- end +-- else +-- if not silent then +-- print("Skipping module '". . k .. "'") +-- end end end
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802220430.w1M4UqL9029865>