Date: Sat, 17 Feb 2018 14:30:39 +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: r329457 - head/stand/lua Message-ID: <201802171430.w1HEUdxO059087@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802171430.w1HEUdxO059087>