From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.help Subject: Re: describe the entries of a menu Date: Mon, 25 Oct 2010 10:13:02 +0200 Message-ID: <87iq0qr8q9.fsf@thinkpad.tsdh.de> References: <3006578.603631287989129871.JavaMail.www@wwinf4623> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1287996323 24090 80.91.229.12 (25 Oct 2010 08:45:23 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 25 Oct 2010 08:45:23 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Oct 25 10:45:17 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PAIfs-000731-25 for geh-help-gnu-emacs@m.gmane.org; Mon, 25 Oct 2010 10:45:16 +0200 Original-Received: from localhost ([127.0.0.1]:46414 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PAIEC-0007aD-MN for geh-help-gnu-emacs@m.gmane.org; Mon, 25 Oct 2010 04:16:24 -0400 Original-Received: from [140.186.70.92] (port=51112 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PAIDi-0007WB-HK for help-gnu-emacs@gnu.org; Mon, 25 Oct 2010 04:16:00 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PAIBC-0004lh-FT for help-gnu-emacs@gnu.org; Mon, 25 Oct 2010 04:13:19 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:54867) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PAIBC-0004lK-3A for help-gnu-emacs@gnu.org; Mon, 25 Oct 2010 04:13:18 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PAIB8-0005CI-CX for help-gnu-emacs@gnu.org; Mon, 25 Oct 2010 10:13:14 +0200 Original-Received: from tsdh.uni-koblenz.de ([141.26.67.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 25 Oct 2010 10:13:14 +0200 Original-Received: from tassilo by tsdh.uni-koblenz.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 25 Oct 2010 10:13:14 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 35 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: tsdh.uni-koblenz.de User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:o0DBuj6r0Yi90/0Jd4JeeJplyGU= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:75210 Archived-At: "A. Soare" writes: Hi Alin, > I wish to find the bindings of the entries of a menu. ( the analogous > for describe-key (C-h k) for keys ). Then do it exactly as for keys, that is, hit `C-h k' and then klick on the menu entry you are interested in. ,----[ C-h k ] | runs the command | describe-key, which is an interactive compiled Lisp function in `help.el'. | | It is bound to C-h k, k, k, | . | | (describe-key &optional KEY UNTRANSLATED UP-EVENT) | | Display documentation of the function invoked by KEY. | KEY can be any kind of a key sequence; it can include keyboard events, | mouse events, and/or menu events. When calling from a program, | pass KEY as a string or a vector. | | If non-nil, UNTRANSLATED is a vector of the corresponding untranslated events. | It can also be a number, in which case the untranslated events from | the last key sequence entered are used. | UP-EVENT is the up-event that was discarded by reading KEY, or nil. | | If KEY is a menu item or a tool-bar button that is disabled, this command | temporarily enables it to allow getting help on disabled items and buttons. `---- Bye, Tassilo