Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Feb 2018 04:45:54 +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: r329357 - head/stand/lua
Message-ID:  <201802160445.w1G4jsoq032003@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802160445.w1G4jsoq032003>