From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.devel Subject: RE: Q on Text Properties popup menu - shouldn't it usethepointerposition, not the cursor position? Date: Sat, 25 Jun 2005 18:26:46 -0700 Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1119749169 26367 80.91.229.2 (26 Jun 2005 01:26:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 26 Jun 2005 01:26:09 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jun 26 03:26:07 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DmLuG-0006gs-1x for ged-emacs-devel@m.gmane.org; Sun, 26 Jun 2005 03:25:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DmM1b-0002eM-7i for ged-emacs-devel@m.gmane.org; Sat, 25 Jun 2005 21:33:31 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DmM0q-0002N0-7S for emacs-devel@gnu.org; Sat, 25 Jun 2005 21:32:44 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DmM0k-0002KF-I1 for emacs-devel@gnu.org; Sat, 25 Jun 2005 21:32:40 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DmM0k-0002GP-BJ for emacs-devel@gnu.org; Sat, 25 Jun 2005 21:32:38 -0400 Original-Received: from [148.87.122.30] (helo=rgminet01.oracle.com) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DmLz4-0007qR-5T for emacs-devel@gnu.org; Sat, 25 Jun 2005 21:30:54 -0400 Original-Received: from rgminet01.oracle.com (localhost [127.0.0.1]) by rgminet01.oracle.com (Switch-3.1.6/Switch-3.1.6) with ESMTP id j5Q1QpOd028306 for ; Sat, 25 Jun 2005 19:26:51 -0600 Original-Received: from rgmsgw301.us.oracle.com (rgmsgw301.us.oracle.com [138.1.186.50]) by rgminet01.oracle.com (Switch-3.1.6/Switch-3.1.6) with ESMTP id j5Q1Qocp028289 for ; Sat, 25 Jun 2005 19:26:50 -0600 Original-Received: from rgmsgw301.us.oracle.com (localhost [127.0.0.1]) by rgmsgw301.us.oracle.com (Switch-3.1.4/Switch-3.1.0) with ESMTP id j5Q1QnOL030645 for ; Sat, 25 Jun 2005 19:26:49 -0600 Original-Received: from dradamslap (dhcp-amer-whq-csvpn-gw3-141-144-80-162.vpn.oracle.com [141.144.80.162]) by rgmsgw301.us.oracle.com (Switch-3.1.4/Switch-3.1.0) with SMTP id j5Q1QmrN030621 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO) for ; Sat, 25 Jun 2005 19:26:49 -0600 Original-To: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 X-Brightmail-Tracker: AAAAAQAAAAI= X-Whitelist: TRUE 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:39531 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:39531 bug: Each time I use the Text Properties menu I get this message: " is undefined". Apparently, the mouse drag through the menu is causing a C-drag-mouse-2 event, which is then treated as pending input. This messes up use of a menu item that I've added locally. The new menu item reads input, and it gets confused by the extra pending input. That's how I came across the bug and why it bothers me. Do this, as a test: (easy-menu-do-add-item facemenu-menu ["Test" test-fn t]) (defun test-fn () (interactive) (message "last input event: %s, input-pending-p: %s" last-input-event (input-pending-p)) (sleep-for 5)) Choose item "Test" in the facemenu-menu, via C-mouse-2. I see this message: last input event: Test, input-pending-p: t After the sleep-for, I see this in the echo area: is undefined If I put a `read-char' in the test-fn, it chokes on the pending non-keyboard input event C-drag-mouse-2, showing that this is indeed the guilty pending event. If I access the same Test menu item from the menu-bar (Edit > Test Properties > Test), I see this: last input event: Test, input-pending-p: nil So this is really a problem for the popup mouse menu (only).