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
This commit is contained in:
Kyle Evans 2018-02-17 14:30:39 +00:00
parent 974a95948a
commit 4afa0076c5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329457

View File

@ -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);