svn commit: r329457 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Sat Feb 17 14:30:40 UTC 2018


Author: kevans
Date: Sat Feb 17 14:30:39 2018
New Revision: 329457
URL: https://svnweb.freebsd.org/changeset/base/329457

Log:
  stand/lua: dumpModules => lsModules
  
  rgrimes@ notes that this behavior is more befitting of the latter name than
  the former, and I'm inclined to agree.
  
  Reported by:	rgrimes

Modified:
  head/stand/lua/config.lua

Modified: head/stand/lua/config.lua
==============================================================================
--- head/stand/lua/config.lua	Sat Feb 17 13:32:29 2018	(r329456)
+++ head/stand/lua/config.lua	Sat Feb 17 14:30:39 2018	(r329457)
@@ -37,7 +37,7 @@ function config.setKey(k, n, v)
 	modules[k][n] = v;
 end
 
-function config.dumpModules()
+function config.lsModules()
 	print("== Dumping modules");
 	for k, v in pairs(modules) do
 		print(k, v.load);


More information about the svn-src-all mailing list