From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] trunk r114629: Make the same key that opens TTY menus also exit the menu. Date: Fri, 11 Oct 2013 23:29:57 +0300 Message-ID: <83ob6vr1oa.fsf@gnu.org> References: Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1381523427 15786 80.91.229.3 (11 Oct 2013 20:30:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 11 Oct 2013 20:30:27 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Oct 11 22:30:29 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VUjLv-0003kT-Mf for ged-emacs-devel@m.gmane.org; Fri, 11 Oct 2013 22:30:27 +0200 Original-Received: from localhost ([::1]:56217 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUjLv-00027F-58 for ged-emacs-devel@m.gmane.org; Fri, 11 Oct 2013 16:30:27 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36478) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUjLn-00026w-TC for emacs-devel@gnu.org; Fri, 11 Oct 2013 16:30:24 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VUjLf-0005UY-KZ for emacs-devel@gnu.org; Fri, 11 Oct 2013 16:30:19 -0400 Original-Received: from mtaout21.012.net.il ([80.179.55.169]:39119) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUjLf-0005TG-BR for emacs-devel@gnu.org; Fri, 11 Oct 2013 16:30:11 -0400 Original-Received: from conversion-daemon.a-mtaout21.012.net.il by a-mtaout21.012.net.il (HyperSendmail v2007.08) id <0MUI00I00U6Q9X00@a-mtaout21.012.net.il> for emacs-devel@gnu.org; Fri, 11 Oct 2013 23:30:10 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout21.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MUI00IKCUA95L50@a-mtaout21.012.net.il>; Fri, 11 Oct 2013 23:30:10 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.169 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:164117 Archived-At: > From: Stefan Monnier > Cc: emacs-devel@gnu.org > Date: Fri, 11 Oct 2013 14:51:17 -0400 > > > +(defcustom tty-menu-open-use-tmm nil > > + "If non-nil, \\[menu-bar-open] on a TTY will invoke `tmm-menubar'. > > + > > +If nil, \\[menu-bar-open] will drop down the menu corresponding to the > > +first (leftmost) menu-bar item; you can select other items by typing > > +\\[forward-char], \\[backward-char], \\[right-char] and \\[left-char]." > > + :type '(choice (const :tag "F10 drops down TTY menus" nil) > > + (const :tag "F10 invokes tmm-menubar" t)) > > + :group 'display > > + :version "24.4") > > Do we really want that? Feel free to delete, if you think we don't (but then you'd need to update the manual and NEWS to follow suit). I just don't like backward incompatibilities, so I left behind a fire escape. Btw, this defcustom has nothing to do with the revision in the subject. It was just moved by that revision to a slightly different place in the same file.