svn commit: r329945 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Sun Feb 25 03:33:26 UTC 2018


Author: kevans
Date: Sun Feb 25 03:33:25 2018
New Revision: 329945
URL: https://svnweb.freebsd.org/changeset/base/329945

Log:
  lualoader: menu: Terminate final values in tables with a comma

Modified:
  head/stand/lua/menu.lua

Modified: head/stand/lua/menu.lua
==============================================================================
--- head/stand/lua/menu.lua	Sun Feb 25 03:30:24 2018	(r329944)
+++ head/stand/lua/menu.lua	Sun Feb 25 03:33:25 2018	(r329945)
@@ -159,7 +159,7 @@ menu.boot_options = {
 			name = "Load System " .. color.highlight("D") ..
 			    "efaults",
 			func = core.setDefaults,
-			alias = {"d", "D"}
+			alias = {"d", "D"},
 		},
 		{
 			entry_type = core.MENU_SEPARATOR,
@@ -177,7 +177,7 @@ menu.boot_options = {
 				    "CPI       :", core.acpi)
 			end,
 			func = core.setACPI,
-			alias = {"a", "A"}
+			alias = {"a", "A"},
 		},
 		-- safe mode
 		{
@@ -187,7 +187,7 @@ menu.boot_options = {
 				    "ode  :", core.sm)
 			end,
 			func = core.setSafeMode,
-			alias = {"m", "M"}
+			alias = {"m", "M"},
 		},
 		-- single user
 		{
@@ -197,7 +197,7 @@ menu.boot_options = {
 				    "ingle user:", core.su)
 			end,
 			func = core.setSingleUser,
-			alias = {"s", "S"}
+			alias = {"s", "S"},
 		},
 		-- verbose boot
 		{
@@ -207,7 +207,7 @@ menu.boot_options = {
 				    "erbose    :", core.verbose)
 			end,
 			func = core.setVerbose,
-			alias = {"v", "V"}
+			alias = {"v", "V"},
 		},
 	},
 }
@@ -249,7 +249,7 @@ menu.welcome = {
 				core.setSingleUser(false)
 				core.boot()
 			end,
-			alias = {"b", "B"}
+			alias = {"b", "B"},
 		},
 		-- boot single user
 		{
@@ -262,7 +262,7 @@ menu.welcome = {
 				core.setSingleUser(true)
 				core.boot()
 			end,
-			alias = {"s", "S"}
+			alias = {"s", "S"},
 		},
 		-- escape to interpreter
 		{
@@ -271,7 +271,7 @@ menu.welcome = {
 			func = function()
 				loader.setenv("autoboot_delay", "NO")
 			end,
-			alias = {core.KEYSTR_ESCAPE}
+			alias = {core.KEYSTR_ESCAPE},
 		},
 		-- reboot
 		{
@@ -280,7 +280,7 @@ menu.welcome = {
 			func = function()
 				loader.perform("reboot")
 			end,
-			alias = {"r", "R"}
+			alias = {"r", "R"},
 		},
 		{
 			entry_type = core.MENU_SEPARATOR,
@@ -317,14 +317,14 @@ menu.welcome = {
 			func = function(_, choice, _)
 				config.selectKernel(choice)
 			end,
-			alias = {"k", "K"}
+			alias = {"k", "K"},
 		},
 		-- boot options
 		{
 			entry_type = core.MENU_SUBMENU,
 			name = "Boot " .. color.highlight("O") .. "ptions",
 			submenu = menu.boot_options,
-			alias = {"o", "O"}
+			alias = {"o", "O"},
 		},
 		-- boot environments
 		{


More information about the svn-src-head mailing list