From: Alan Mackenzie <acm@muc.de>
To: Stefan Monnier <monnier@IRO.UMontreal.CA>
Cc: 29478@debbugs.gnu.org, npostavs@users.sourceforge.net
Subject: bug#29478: [Patch] bug#29478: 26.0.90; `C-h k' followed by mouse clicks no longer shows down event
Date: Sat, 23 Dec 2017 21:04:07 +0000 [thread overview]
Message-ID: <20171223210407.GC6618@ACM> (raw)
In-Reply-To: <jwv4lohjv1e.fsf-monnier+emacsbugs@gnu.org>
Hello, Stefan.
On Sat, Dec 23, 2017 at 11:33:11 -0500, Stefan Monnier wrote:
[ .... ]
> > OK, I have a provisional fix. The problem was that the double-click-time
> > loop in help-read-key-sequence was discarding all events but the last
> > one. I have amended the loop so that _all_ these events are stored in a
> > list, and we then discard the most recent events till we find one with a
> > binding.
> I must say after reading the whole thread and looking at the code,
> I still don't really understand what's the idea behind this patch (nor
> exactly which problems we're trying to solve).
To make C-h c/k <shift><mouse-1> display "mouse-appearance-menu" rather
than "key sequence unbound". The idea behind the code is to return the
last key sequence which is bound, rather than the very last one, which
may not be.
> The way I understand the problem (which may be naive because I haven't
> tried to play with the code yet, so I'm probably missing some subtlety),
> the code should "simply" read events until the event read is not a down
> event (and skipping pseudo events like mouse-movements and help-echo).
> And then return all those events (it's probably not going to be more
> than 2, but I don't see any benefit in hard-coding the fact that we
> return either 1 or 2 events, we could just say "returns a list of
> events").
Out of all these key sequences, some code somewhere has to select the
one for which the help message will be displayed. Perhaps arbitrarily,
this is now in help-read-key-sequence.
> BTW, here are some comments about the current code:
> > (and no-mouse-movement
> > (string-match "mouse-movement" keyname))
> > + (progn (push key keys) nil)
> > (and (string-match "\\(mouse\\|down\\|click\\|drag\\)"
> > keyname)
> Why string-match on event names rather than use things like
> event-basic-type, and event-modifiers?
Lack of knowledge on the part of the person who wrote it (me).
> > (progn
> > @@ -739,13 +740,31 @@ help-read-key-sequence
> > (sleep-for 0.01)
> > (while (read-event nil nil 0.01))
> We're blindly throwing away events here, right? Isn't that a problem?
No, it's a filter. Things like <help-echo>, which otherwise triggered
the sit-for are now discarded, so that only user events are processed.
I know of nobody who can press mouse buttons as fast as 100 times a
second. All this was diagnosed in the early stages of another bug
report, bug #29272.
> Stefan
--
Alan Mackenzie (Nuremberg, Germany).
next prev parent reply other threads:[~2017-12-23 21:04 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-27 23:21 bug#29478: 26.0.90; `C-h k' followed by mouse clicks no longer shows down event Drew Adams
2017-11-28 1:50 ` Noam Postavsky
2017-11-28 17:11 ` Eli Zaretskii
2017-11-28 22:10 ` Alan Mackenzie
2017-11-29 0:44 ` Noam Postavsky
2017-11-29 3:36 ` Eli Zaretskii
2017-11-29 4:33 ` Drew Adams
2017-12-01 8:31 ` Eli Zaretskii
2017-12-09 17:18 ` Alan Mackenzie
2017-12-23 14:28 ` bug#29478: [Patch 2]: " Alan Mackenzie
2017-12-23 14:48 ` Andreas Schwab
2017-12-24 8:43 ` Alan Mackenzie
[not found] ` <<20171128221036.GC14868@ACM>
[not found] ` <<bbcb1d00-a728-4b5e-b65f-bd2b168c4a51@default>
[not found] ` <<83o9ni3l3i.fsf@gnu.org>
2017-12-01 15:35 ` Drew Adams
2017-12-01 16:51 ` Eli Zaretskii
2017-12-09 16:13 ` Eli Zaretskii
2017-12-09 17:23 ` Alan Mackenzie
2017-12-22 22:05 ` Alan Mackenzie
2017-12-23 9:42 ` Eli Zaretskii
2017-12-23 11:17 ` bug#29478: [Patch] " Alan Mackenzie
2017-12-23 12:41 ` Eli Zaretskii
2017-12-23 16:33 ` Stefan Monnier
2017-12-23 21:04 ` Alan Mackenzie [this message]
2017-12-24 4:55 ` Stefan Monnier
2017-12-24 5:41 ` Eli Zaretskii
2017-12-24 6:52 ` Stefan Monnier
2017-12-24 11:48 ` Alan Mackenzie
2017-12-24 15:41 ` Stefan Monnier
2017-12-30 10:50 ` Eli Zaretskii
2018-01-03 3:56 ` Stefan Monnier
2018-01-06 17:40 ` Eli Zaretskii
2018-01-07 15:31 ` bug#29478: [SUSPECTED SPAM] " Stefan Monnier
2018-01-07 17:46 ` Eli Zaretskii
2018-01-07 18:03 ` Stefan Monnier
2018-01-26 22:00 ` bug#29478: " Stefan Monnier
2018-01-26 22:37 ` Stefan Monnier
2018-01-27 8:28 ` Eli Zaretskii
2018-01-28 16:02 ` Stefan Monnier
2018-01-28 17:18 ` Eli Zaretskii
2018-01-29 21:54 ` Stefan Monnier
2018-01-30 3:23 ` Eli Zaretskii
2018-01-30 14:18 ` Stefan Monnier
2018-01-30 15:40 ` Eli Zaretskii
2018-01-30 16:59 ` Stefan Monnier
2018-01-27 7:59 ` Eli Zaretskii
2017-12-30 10:51 ` Eli Zaretskii
2017-12-30 11:32 ` Alan Mackenzie
2017-12-30 12:49 ` Eli Zaretskii
2017-12-23 16:19 ` bug#29478: " Stefan Monnier
2020-08-26 13:43 ` bug#29478: 26.0.90; " Lars Ingebrigtsen
2020-08-26 17:12 ` Drew Adams
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171223210407.GC6618@ACM \
--to=acm@muc.de \
--cc=29478@debbugs.gnu.org \
--cc=monnier@IRO.UMontreal.CA \
--cc=npostavs@users.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).