From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: Re: More key strangeness Date: Mon, 19 May 2008 04:20:02 -0400 Message-ID: References: <003e01c8b534$31cbdd30$0200a8c0@us.oracle.com> <004201c8b724$7c7cabb0$0200a8c0@us.oracle.com> <86zlqqy4pq.fsf@lola.quinscape.zz> <004601c8b8a8$85c89230$0200a8c0@us.oracle.com> <85tzgwufnn.fsf_-_@lola.goethe.zz> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1211185235 4431 80.91.229.12 (19 May 2008 08:20:35 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 19 May 2008 08:20:35 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org, Drew Adams To: David Kastrup Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 19 10:21:13 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Jy0cK-0005Te-R7 for ged-emacs-devel@m.gmane.org; Mon, 19 May 2008 10:21:13 +0200 Original-Received: from localhost ([127.0.0.1]:49721 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jy0bZ-0007y1-GD for ged-emacs-devel@m.gmane.org; Mon, 19 May 2008 04:20:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jy0bO-0007xR-Dd for emacs-devel@gnu.org; Mon, 19 May 2008 04:20:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jy0bM-0007wz-Rj for emacs-devel@gnu.org; Mon, 19 May 2008 04:20:14 -0400 Original-Received: from [199.232.76.173] (port=44173 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jy0bM-0007ww-OS for emacs-devel@gnu.org; Mon, 19 May 2008 04:20:12 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:38660) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Jy0bM-00005S-Py for emacs-devel@gnu.org; Mon, 19 May 2008 04:20:12 -0400 Original-Received: from mail.gnu.org ([199.232.76.166]:51525 helo=mx10.gnu.org) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1Jy0aA-0004jc-UM for emacs-pretest-bug@gnu.org; Mon, 19 May 2008 04:18:59 -0400 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Jy0bJ-0008W6-Ln for emacs-pretest-bug@gnu.org; Mon, 19 May 2008 04:20:12 -0400 Original-Received: from 206-248-170-48.dsl.teksavvy.com ([206.248.170.48]:42854 helo=ceviche.home) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Jy0bE-0008UG-Vq; Mon, 19 May 2008 04:20:05 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 9A19CB4F21; Mon, 19 May 2008 04:20:02 -0400 (EDT) In-Reply-To: <85tzgwufnn.fsf_-_@lola.goethe.zz> (David Kastrup's message of "Sun, 18 May 2008 11:26:20 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) X-Greylist: delayed 104851 seconds by postgrey-1.27 at monty-python; Mon, 19 May 2008 04:20:04 EDT X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:97382 gmane.emacs.pretest.bugs:22385 Archived-At: > Typing C-h k C-x > gives the resulting error message > C-x is undefined > in the *Messages* buffer, but > is undefined > in the echo area. > Wow. Where does that discrepancy come from? I believe there's no discrepancy: What happens is that after selecting the menu, you end up with 4 events: C-x and when reading them to find the corresponding key-sequence and command, the first key-sequence is C-x and is unbound, so it generates the message "C-x is undefined". Then the next event probably generates " is undefined", and so does . So you should see 3 messages in total. Stefan