svn commit: r329357 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Fri Feb 16 04:45:54 UTC 2018


Author: kevans
Date: Fri Feb 16 04:45:53 2018
New Revision: 329357
URL: https://svnweb.freebsd.org/changeset/base/329357

Log:
  stand/lua: Remove explicit alias from "Back to main menu"
  
  This removes a redundant alias that has since been converted into a global
  alias. It was converted to a global alias before to ensure that we always
  have a way to go up one level in the menu.

Modified:
  head/stand/lua/menu.lua

Modified: head/stand/lua/menu.lua
==============================================================================
--- head/stand/lua/menu.lua	Fri Feb 16 04:44:47 2018	(r329356)
+++ head/stand/lua/menu.lua	Fri Feb 16 04:45:53 2018	(r329357)
@@ -53,8 +53,7 @@ menu.boot_options = {
 		entry_type = "return",
 		name = function()
 			return "Back to main menu"..color.highlight(" [Backspace]");
-		end,
-		alias = {"\08"}
+		end
 	},
 
 	-- load defaults


More information about the svn-src-all mailing list