svn commit: r329811 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Thu Feb 22 04:30:53 UTC 2018


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
 


More information about the svn-src-all mailing list