svn commit: r330617 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Wed Mar 7 18:28:42 UTC 2018


Author: kevans
Date: Wed Mar  7 18:28:41 2018
New Revision: 330617
URL: https://svnweb.freebsd.org/changeset/base/330617

Log:
  lualoader: Fix name, cli.execute_unparsed -> cli_execute_unparsed

Modified:
  head/stand/lua/cli.lua

Modified: head/stand/lua/cli.lua
==============================================================================
--- head/stand/lua/cli.lua	Wed Mar  7 18:25:27 2018	(r330616)
+++ head/stand/lua/cli.lua	Wed Mar  7 18:28:41 2018	(r330617)
@@ -94,7 +94,7 @@ function cli_execute(...)
 
 end
 
-function cli.execute_unparsed(str)
+function cli_execute_unparsed(str)
 	cli_execute(loader.parse(str))
 end
 


More information about the svn-src-head mailing list