* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
@ 2019-04-21 2:50 Drew Adams
2019-04-21 13:27 ` Drew Adams
2022-04-29 12:01 ` Lars Ingebrigtsen
0 siblings, 2 replies; 43+ messages in thread
From: Drew Adams @ 2019-04-21 2:50 UTC (permalink / raw)
To: 35353
Never bothered to use Xref (`dired-do-find-regexp' etc.) until now.
I'm already surprised at what I see within the first 3 minutes.
1. I use `mouse-1-click-follows-link' = nil. (I use `mouse-2', not
`mouse-1', to follow clicked links, buttons, etc.) But this
setting seems to have no effect in buffer `*xref*'.
Except by clicking on a file line (it seems), I find it impossible
to click `mouse-1' without having Emacs follow a link; impossible
to set point in the buffer using `mouse-1'; no way to just click
buffer text to select its frame. What's that all about?
2. I try `C-h m' or `C-h v major-mode' to find out more about what's
going on, and I learn that the major mode is called
`xref--xref-buffer-mode'. Seriously? Why? It seems very wrong
and unEmacsy to give a major mode an "internal" name. Users
examine major modes. That's part of the usual help system for
even casual users.
Please respect `mouse-1-click-follows-link'. And please name the
major mode without an "internal-function" name. Thx.
In GNU Emacs 26.2 (build 1, x86_64-w64-mingw32)
of 2019-04-13
Repository revision: fd1b34bfba8f3f6298df47c8e10b61530426f749
Windowing system distributor `Microsoft Corp.', version 10.0.17134
Configured using:
`configure --without-dbus --host=x86_64-w64-mingw32
--without-compress-install 'CFLAGS=-O2 -static -g3''
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-21 2:50 bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name Drew Adams
@ 2019-04-21 13:27 ` Drew Adams
2019-04-22 9:24 ` Dmitry Gutov
2022-04-29 12:01 ` Lars Ingebrigtsen
1 sibling, 1 reply; 43+ messages in thread
From: Drew Adams @ 2019-04-21 13:27 UTC (permalink / raw)
To: 35353
> Please respect `mouse-1-click-follows-link'.
Please contrast what, say, `compile.el' does, which is
simple and Emacs-conventional:
(define-key map [mouse-2] 'compile-goto-error)
(define-key map [follow-link] 'mouse-face)
See (elisp) `Key Binding Conventions':
Many special major modes, like Dired, Info, Compilation,
and Occur, are designed to handle read-only text that
contains "hyper-links".
Such a major mode should redefine 'mouse-2' and <RET> to
^^^^^^^^^^^^^^^^^^^^^^^^^
follow the links. It should also set up a 'follow-link'
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
condition, so that the link obeys 'mouse-1-click-follows-link'.
*Note Clickable Text::. *Note Buttons::, for an easy
method of implementing such clickable links.
Each core Emacs developer who defines a major mode with
clickable links should be familiar with and respect this
convention.
Before Emacs distributes a new library - and certainly
before it gives new commands keys that have long been
bound to other commands, especially commands Emacs still
offers - the new library should be vetted to ensure that
it doesn't disregard Emacs conventions.
We'll soon be in release 27. This bug was introduced in
Emacs 25.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-21 13:27 ` Drew Adams
@ 2019-04-22 9:24 ` Dmitry Gutov
2019-04-22 9:42 ` Eli Zaretskii
0 siblings, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-04-22 9:24 UTC (permalink / raw)
To: Drew Adams, 35353
On 21.04.2019 16:27, Drew Adams wrote:
>> Please respect `mouse-1-click-follows-link'.
>
> Please contrast what, say, `compile.el' does, which is
> simple and Emacs-conventional:
>
> (define-key map [mouse-2] 'compile-goto-error)
> (define-key map [follow-link] 'mouse-face)
>
> See (elisp) `Key Binding Conventions':
>
> Many special major modes, like Dired, Info, Compilation,
> and Occur, are designed to handle read-only text that
> contains "hyper-links".
>
> Such a major mode should redefine 'mouse-2' and <RET> to
> ^^^^^^^^^^^^^^^^^^^^^^^^^
> follow the links. It should also set up a 'follow-link'
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> condition, so that the link obeys 'mouse-1-click-follows-link'.
>
> *Note Clickable Text::. *Note Buttons::, for an easy
> method of implementing such clickable links.
>
> Each core Emacs developer who defines a major mode with
> clickable links should be familiar with and respect this
> convention.
Thank you for the report.
It's not hard to fix, but it seems to do that we'll have to give mouse-2
a different binding from what it has now. Which is also a breaking
change (in Xref).
I'd like to let someone else decide whether this is worth it.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 9:24 ` Dmitry Gutov
@ 2019-04-22 9:42 ` Eli Zaretskii
2019-04-22 9:48 ` Dmitry Gutov
0 siblings, 1 reply; 43+ messages in thread
From: Eli Zaretskii @ 2019-04-22 9:42 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: 35353
> From: Dmitry Gutov <dgutov@yandex.ru>
> Date: Mon, 22 Apr 2019 12:24:11 +0300
>
> It's not hard to fix, but it seems to do that we'll have to give mouse-2
> a different binding from what it has now. Which is also a breaking
> change (in Xref).
I'm not sure I follow: currently, mouse-2 does "follow the link"
already, and I believe this bug report will be satisfied if we cause
mouse-1 to do the same when mouse-1-click-follows-link is in effect.
And mouse-1 is not currently bound in Xref buffers.
So how would fixing this constitute a breaking change?
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 9:42 ` Eli Zaretskii
@ 2019-04-22 9:48 ` Dmitry Gutov
2019-04-22 10:09 ` Eli Zaretskii
[not found] ` <<83y34273mu.fsf@gnu.org>
0 siblings, 2 replies; 43+ messages in thread
From: Dmitry Gutov @ 2019-04-22 9:48 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 35353
On 22.04.2019 12:42, Eli Zaretskii wrote:
> I'm not sure I follow: currently, mouse-2 does "follow the link"
> already,
It calls xref--mouse-2, see xref--button-map.
That function displays the location, but keeps the Xref window selected.
> and I believe this bug report will be satisfied if we cause
> mouse-1 to do the same when mouse-1-click-follows-link is in effect.
> And mouse-1 is not currently bound in Xref buffers.
??
It's bound to xref-goto-xref, see the same map.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 9:48 ` Dmitry Gutov
@ 2019-04-22 10:09 ` Eli Zaretskii
2019-04-22 10:18 ` Dmitry Gutov
[not found] ` <<83y34273mu.fsf@gnu.org>
1 sibling, 1 reply; 43+ messages in thread
From: Eli Zaretskii @ 2019-04-22 10:09 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: 35353
> Cc: 35353@debbugs.gnu.org
> From: Dmitry Gutov <dgutov@yandex.ru>
> Date: Mon, 22 Apr 2019 12:48:20 +0300
>
> On 22.04.2019 12:42, Eli Zaretskii wrote:
>
> > I'm not sure I follow: currently, mouse-2 does "follow the link"
> > already,
>
> It calls xref--mouse-2, see xref--button-map.
>
> That function displays the location, but keeps the Xref window selected.
>
> > and I believe this bug report will be satisfied if we cause
> > mouse-1 to do the same when mouse-1-click-follows-link is in effect.
> > And mouse-1 is not currently bound in Xref buffers.
>
> ??
>
> It's bound to xref-goto-xref, see the same map.
Sorry, I just looked in the manual.
So we already support mouse-1 clicks, don't we? Or am I again missing
something?
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 10:09 ` Eli Zaretskii
@ 2019-04-22 10:18 ` Dmitry Gutov
2019-04-22 10:21 ` Eli Zaretskii
` (3 more replies)
0 siblings, 4 replies; 43+ messages in thread
From: Dmitry Gutov @ 2019-04-22 10:18 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 35353
On 22.04.2019 13:09, Eli Zaretskii wrote:
> So we already support mouse-1 clicks, don't we? Or am I again missing
> something?
Yes, but apparently we don't honor mouse-1-click-follows-link.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 10:18 ` Dmitry Gutov
@ 2019-04-22 10:21 ` Eli Zaretskii
2019-04-22 10:52 ` Dmitry Gutov
[not found] ` <<83v9z6732b.fsf@gnu.org>
` (2 subsequent siblings)
3 siblings, 1 reply; 43+ messages in thread
From: Eli Zaretskii @ 2019-04-22 10:21 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: 35353
> Cc: 35353@debbugs.gnu.org
> From: Dmitry Gutov <dgutov@yandex.ru>
> Date: Mon, 22 Apr 2019 13:18:03 +0300
>
> On 22.04.2019 13:09, Eli Zaretskii wrote:
>
> > So we already support mouse-1 clicks, don't we? Or am I again missing
> > something?
>
> Yes, but apparently we don't honor mouse-1-click-follows-link.
FWIW, I don't see that as a serious issue in this case. Feel free to
close as wontfix, if you want.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 10:21 ` Eli Zaretskii
@ 2019-04-22 10:52 ` Dmitry Gutov
2019-04-22 10:57 ` Dmitry Gutov
` (3 more replies)
0 siblings, 4 replies; 43+ messages in thread
From: Dmitry Gutov @ 2019-04-22 10:52 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 35353
On 22.04.2019 13:21, Eli Zaretskii wrote:
>>> So we already support mouse-1 clicks, don't we? Or am I again missing
>>> something?
>>
>> Yes, but apparently we don't honor mouse-1-click-follows-link.
>
> FWIW, I don't see that as a serious issue in this case. Feel free to
> close as wontfix, if you want.
The fix is not hard, though. Is the variable more targeted on other use
cases? Or is it just obscure enough for us not to bother?
The patch looks like this (to be accompanied with an appropriate renaming):
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index e5e59721eb..463f72ae6f 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -722,8 +722,9 @@ xref--next-error-function
(defvar xref--button-map
(let ((map (make-sparse-keymap)))
(define-key map [(control ?m)] #'xref-goto-xref)
- (define-key map [mouse-1] #'xref-goto-xref)
- (define-key map [mouse-2] #'xref--mouse-2)
+ (define-key map [follow-link] 'mouse-face)
+ (define-key map [mouse-2] #'xref-goto-xref)
+ (define-key map [mouse-1] #'xref--mouse-2)
map))
(defun xref--mouse-2 (event)
^ permalink raw reply related [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 10:52 ` Dmitry Gutov
@ 2019-04-22 10:57 ` Dmitry Gutov
2019-04-22 11:42 ` Phil Sainty
2019-04-22 11:07 ` Drew Adams
` (2 subsequent siblings)
3 siblings, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-04-22 10:57 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 35353
On 22.04.2019 13:52, Dmitry Gutov wrote:
> The patch looks like this
The downside is that the "show location but don't switch windows" action
becomes harder to invoke: you have to mouse-1 click, wait at least 450ms
(by default), then release.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 10:57 ` Dmitry Gutov
@ 2019-04-22 11:42 ` Phil Sainty
2019-04-22 13:08 ` Drew Adams
0 siblings, 1 reply; 43+ messages in thread
From: Phil Sainty @ 2019-04-22 11:42 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: 35353
On 22/04/19 10:57 PM, Dmitry Gutov wrote:
> The downside is that the "show location but don't switch windows" action
> becomes harder to invoke: you have to mouse-1 click, wait at least 450ms
> (by default), then release.
Perhaps there could be a new user option to choose which of the two
actions should be used by mouse-2 and mouse-1, and then users with
mouse-1-click-follows-link disabled could configure their preferred
action for mouse-2.
In any case, the NEWS will need to point out the change of behaviour,
so it could always suggest custom key bindings which users could employ
to get different behaviour, if that's simplest.
-Phil
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 11:42 ` Phil Sainty
@ 2019-04-22 13:08 ` Drew Adams
2019-05-02 22:35 ` Dmitry Gutov
2019-05-02 22:48 ` Dmitry Gutov
0 siblings, 2 replies; 43+ messages in thread
From: Drew Adams @ 2019-04-22 13:08 UTC (permalink / raw)
To: Phil Sainty, Dmitry Gutov; +Cc: 35353
> > The downside is that the "show location but don't switch windows" action
> > becomes harder to invoke: you have to mouse-1 click, wait at least 450ms
> > (by default), then release.
>
> Perhaps there could be a new user option to choose which of the two
> actions should be used by mouse-2 and mouse-1, and then users with
> mouse-1-click-follows-link disabled could configure their preferred
> action for mouse-2.
>
> In any case, the NEWS will need to point out the change of behaviour,
> so it could always suggest custom key bindings which users could employ
> to get different behaviour, if that's simplest.
What is the "show location but don't switch windows"
action? Is it `xref--show-location' or some command
that invokes that function?
I don't see (in Emacs 26.2) any mouse action that
shows the location but does not switch windows. I
see only `C-o' (`xref-show-location-at-point'),
whose name says it does that, but only for point,
not for the mouse position. (And when I try `C-o'
it too switches to another window, the same as `RET'.)
In any case, how is Xref different from, say, Occur
wrt mouse actions and the general interaction? What
makes it so special that it should be problematic to
fix this bug?
(Node `Xref Commands' of the Emacs manual calls the
mode "the special XREF mode". How is it "special"?
Or is that supposed to mean only that it is a child
of `special-mode'? If that's it then I think this
language will only confuse users, most of whom are
not aware of `special-mode', or at least not thinking
of it here.)
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 13:08 ` Drew Adams
@ 2019-05-02 22:35 ` Dmitry Gutov
2019-05-02 23:22 ` Drew Adams
2019-05-02 22:48 ` Dmitry Gutov
1 sibling, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-05-02 22:35 UTC (permalink / raw)
To: Drew Adams, Phil Sainty; +Cc: 35353
On 22.04.2019 16:08, Drew Adams wrote:
> What is the "show location but don't switch windows"
> action? Is it `xref--show-location' or some command
> that invokes that function?
Have you heard of 'C-h k'? It's handy.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-02 22:35 ` Dmitry Gutov
@ 2019-05-02 23:22 ` Drew Adams
2019-05-02 23:31 ` Dmitry Gutov
2019-05-04 21:21 ` Richard Stallman
0 siblings, 2 replies; 43+ messages in thread
From: Drew Adams @ 2019-05-02 23:22 UTC (permalink / raw)
To: Dmitry Gutov, Phil Sainty; +Cc: 35353
> > What is the "show location but don't switch windows"
> > action?
>
> Have you heard of 'C-h k'? It's handy.
How does that answer the question?
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-02 23:22 ` Drew Adams
@ 2019-05-02 23:31 ` Dmitry Gutov
2019-05-03 0:27 ` Drew Adams
2019-05-04 21:21 ` Richard Stallman
1 sibling, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-05-02 23:31 UTC (permalink / raw)
To: Drew Adams, Phil Sainty; +Cc: 35353
On 03.05.2019 2:22, Drew Adams wrote:
>>> What is the "show location but don't switch windows"
>>> action?
>>
>> Have you heard of 'C-h k'? It's handy.
>
> How does that answer the question?
By helping you to find out the answer for yourself.
Because I have already explained what it does the best I could.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-02 23:31 ` Dmitry Gutov
@ 2019-05-03 0:27 ` Drew Adams
0 siblings, 0 replies; 43+ messages in thread
From: Drew Adams @ 2019-05-03 0:27 UTC (permalink / raw)
To: Dmitry Gutov, Phil Sainty; +Cc: 35353
> >>> What is the "show location but don't switch windows"
> >>> action?
> >>
> >> Have you heard of 'C-h k'? It's handy.
> >
> > How does that answer the question?
>
> By helping you to find out the answer for yourself.
No idea for what key you're suggesting `C-h k' will
tell me what you mean by the "show location but
don't switch windows" action. Care to share?
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-02 23:22 ` Drew Adams
2019-05-02 23:31 ` Dmitry Gutov
@ 2019-05-04 21:21 ` Richard Stallman
2019-05-04 22:25 ` Drew Adams
1 sibling, 1 reply; 43+ messages in thread
From: Richard Stallman @ 2019-05-04 21:21 UTC (permalink / raw)
To: Drew Adams; +Cc: psainty, 35353, dgutov
[[[ To any NSA and FBI agents reading my email: please consider ]]]
[[[ whether defending the US Constitution against all enemies, ]]]
[[[ foreign or domestic, requires you to follow Snowden's example. ]]]
> > Have you heard of 'C-h k'? It's handy.
> How does that answer the question?
You type C-h k and then generate some event, and it shows what command
that event will run. That might enable you to find the answer
to your question:
> > > What is the "show location but don't switch windows"
> > > action?
So the answer was helpful, or at least had a good chance of being
helpful. But the way it was written,
> > Have you heard of 'C-h k'? It's handy.
is not very helpful, because it made you figure out, or guess,
how it related to your question. It was teasing.
It is kinder to answer in a way that shows explicitly how the
answer relates to the question. For instance,
C-h k followed by generating the event should tell you
what command it runs.
--
Dr Richard Stallman
President, Free Software Foundation (https://gnu.org, https://fsf.org)
Internet Hall-of-Famer (https://internethalloffame.org)
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-04 21:21 ` Richard Stallman
@ 2019-05-04 22:25 ` Drew Adams
2019-05-05 22:50 ` Richard Stallman
0 siblings, 1 reply; 43+ messages in thread
From: Drew Adams @ 2019-05-04 22:25 UTC (permalink / raw)
To: rms; +Cc: psainty, 35353, dgutov
> > > Have you heard of 'C-h k'? It's handy.
> > How does that answer the question?
>
> You type C-h k and then generate some event, and it shows what command
> that event will run. That might enable you to find the answer
> to your question:
> > > > What is the "show location but don't switch windows"
> > > > action?
>
> So the answer was helpful, or at least had a good chance of being
> helpful.
No, it didn't help at all. I had no idea what
action the description "show location but don't
switch windows" was meant to indicate.
And no particular key was mentioned, so I had
no idea how `C-h k' could possibly have helped.
And none of the keys mentioned exhibited any "show
location but don't switch windows" behavior.
(And yes, I am aware of `C-h k'.)
> But the way it was written,
> > > Have you heard of 'C-h k'? It's handy.
> is not very helpful, because it made you figure out, or guess,
> how it related to your question. It was teasing.
It was just a snide remark, not helpful at all.
> It is kinder to answer in a way that shows explicitly how the
> answer relates to the question. For instance,
> C-h k followed by generating the event should tell you
> what command it runs.
No such event/key was ever identified, so
`C-h k' really did not help here in any way.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-04 22:25 ` Drew Adams
@ 2019-05-05 22:50 ` Richard Stallman
2019-05-06 0:40 ` Drew Adams
0 siblings, 1 reply; 43+ messages in thread
From: Richard Stallman @ 2019-05-05 22:50 UTC (permalink / raw)
To: Drew Adams; +Cc: psainty, 35353, dgutov
[[[ To any NSA and FBI agents reading my email: please consider ]]]
[[[ whether defending the US Constitution against all enemies, ]]]
[[[ foreign or domestic, requires you to follow Snowden's example. ]]]
> No such event/key was ever identified, so
> `C-h k' really did not help here in any way.
If it doesn't tell you a command name, perhaps this case is a deficiency
in C-h k itself.
--
Dr Richard Stallman
President, Free Software Foundation (https://gnu.org, https://fsf.org)
Internet Hall-of-Famer (https://internethalloffame.org)
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-05 22:50 ` Richard Stallman
@ 2019-05-06 0:40 ` Drew Adams
2019-05-06 8:45 ` Dmitry Gutov
0 siblings, 1 reply; 43+ messages in thread
From: Drew Adams @ 2019-05-06 0:40 UTC (permalink / raw)
To: rms; +Cc: psainty, 35353, dgutov
> > No such event/key was ever identified, so
> > `C-h k' really did not help here in any way.
>
> If it doesn't tell you a command name, perhaps
> this case is a deficiency in C-h k itself.
You are misunderstanding, I think. Please look at
the bug thread if you are really interested.
It was Dmitry (not `C-h k') who never identified
the key for which to use `C-h k'. He never
identified the command either. No idea what he
was (not) talking about.
The only thing he did was refer to an unidentified
"show location but don't switch windows" behavior.
When I asked what he meant by that he just asked me
sarcastically if I've heard of `C-h k'. Not helpful.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-06 0:40 ` Drew Adams
@ 2019-05-06 8:45 ` Dmitry Gutov
2019-05-06 13:29 ` Drew Adams
0 siblings, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-05-06 8:45 UTC (permalink / raw)
To: Drew Adams, rms; +Cc: psainty, 35353
On 06.05.2019 3:40, Drew Adams wrote:
> It was Dmitry (not `C-h k') who never identified
> the key for which to use `C-h k'. He never
> identified the command either.
If that really was the issue: the "show location but don't switch
windows" command is xref--mouse-2, currently bound to mouse-2.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-06 8:45 ` Dmitry Gutov
@ 2019-05-06 13:29 ` Drew Adams
0 siblings, 0 replies; 43+ messages in thread
From: Drew Adams @ 2019-05-06 13:29 UTC (permalink / raw)
To: Dmitry Gutov, rms; +Cc: psainty, 35353
> > It was Dmitry (not `C-h k') who never identified
> > the key for which to use `C-h k'. He never
> > identified the command either.
>
> If that really was the issue: the "show location but don't switch
> windows" command is xref--mouse-2, currently bound to mouse-2.
Thank you. That was the question about your "show
location but don't switch windows". (It was not
the issue reported in the bug report, however.)
But as I mentioned, with the settings I cited
there is no difference in behavior between mouse-1
and mouse-2. Each shows the target in the other
window, without selecting that window.
And unfortunately the window the target is shown
in is the window the Dired buffer was in - the
Dired buffer is replaced there (not a good thing,
IMO).
Anyway, I've already said all that. But thanks
for clearing up what you meant by the "show
location but don't switch windows" command.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 13:08 ` Drew Adams
2019-05-02 22:35 ` Dmitry Gutov
@ 2019-05-02 22:48 ` Dmitry Gutov
2019-05-02 23:22 ` Drew Adams
1 sibling, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-05-02 22:48 UTC (permalink / raw)
To: Drew Adams, Phil Sainty; +Cc: 35353
On 22.04.2019 16:08, Drew Adams wrote:
> I
> see only `C-o' (`xref-show-location-at-point'),
> whose name says it does that, but only for point,
> not for the mouse position. (And when I try `C-o'
> it too switches to another window, the same as `RET'.)
It doesn't do that over here.
> In any case, how is Xref different from, say, Occur
> wrt mouse actions and the general interaction? What
> makes it so special that it should be problematic to
> fix this bug?
Honestly, it's quite easy. I'm pasting the code patch below.
Would you write the NEWS entry for it? And any necessary manual changes
would be nice as well.
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index c7f015b94f..6dcdd75c84 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -722,8 +722,9 @@ xref--next-error-function
(defvar xref--button-map
(let ((map (make-sparse-keymap)))
(define-key map [(control ?m)] #'xref-goto-xref)
- (define-key map [mouse-1] #'xref-goto-xref)
- (define-key map [mouse-2] #'xref--mouse-2)
+ (define-key map [follow-link] 'mouse-face)
+ (define-key map [mouse-2] #'xref-goto-xref)
+ (define-key map [mouse-3] #'xref--mouse-3)
map))
(defun xref--mouse-2 (event)
^ permalink raw reply related [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-02 22:48 ` Dmitry Gutov
@ 2019-05-02 23:22 ` Drew Adams
2019-05-02 23:34 ` Dmitry Gutov
0 siblings, 1 reply; 43+ messages in thread
From: Drew Adams @ 2019-05-02 23:22 UTC (permalink / raw)
To: Dmitry Gutov, Phil Sainty; +Cc: 35353
> > I see only `C-o' (`xref-show-location-at-point'),
> > whose name says it does that, but only for point,
> > not for the mouse position. (And when I try `C-o'
> > it too switches to another window, the same as `RET'.)
>
> It doesn't do that over here.
Over here meaning what? Which sentence are you
referencing: mouse position or window switching?
Do you have non-nil `pop-up-frames'? Are buffers
named `*...*' special-display buffers for you?
Yes, I was describing what I see in my setup,
which has those things.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-02 23:22 ` Drew Adams
@ 2019-05-02 23:34 ` Dmitry Gutov
2019-05-03 0:27 ` Drew Adams
0 siblings, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-05-02 23:34 UTC (permalink / raw)
To: Drew Adams, Phil Sainty; +Cc: 35353
On 03.05.2019 2:22, Drew Adams wrote:
>> It doesn't do that over here.
>
> Over here meaning what? Which sentence are you
> referencing: mouse position or window switching?
Doesn't switch to another window.
> Do you have non-nil `pop-up-frames'?
Nope, but that doesn't seem to affect the non-window-switching.
> Are buffers
> named `*...*' special-display buffers for you?
No idea what that means.
> Yes, I was describing what I see in my setup,
> which has those things.
And I'm describing 'emacs -Q'. If you see some details in the
implementation that could work more reliably (e.g. with your
configuration as well), please go ahead and point them out.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-02 23:34 ` Dmitry Gutov
@ 2019-05-03 0:27 ` Drew Adams
0 siblings, 0 replies; 43+ messages in thread
From: Drew Adams @ 2019-05-03 0:27 UTC (permalink / raw)
To: Dmitry Gutov, Phil Sainty; +Cc: 35353
> >> It doesn't do that over here.
> >
> > Over here meaning what? Which sentence are you
> > referencing: mouse position or window switching?
>
> Doesn't switch to another window.
>
> > Do you have non-nil `pop-up-frames'?
>
> Nope, but that doesn't seem to affect the non-window-switching.
>
> > Are buffers named `*...*' special-display buffers for you?
>
> No idea what that means.
Customize option `special-display-regexps' to
`("[ ]?[*][^*]+[*]")', for example.
> > Yes, I was describing what I see in my setup,
> > which has those things.
>
> And I'm describing 'emacs -Q'.
I just reported the bug. If you want to fix it, fine.
If not, OK. I'm not a user of xref, so far. I simply
tried it and immediately fell upon the problem reported.
I have nil `mouse-1-click-follows-link', non-nil
`pop-up-frames', and `("[ ]?[*][^*]+[*]")' for
`special-display-regexps' (which affects a buffer named
`*xref*').
If the bug report helps, great. If you apply the fix
I suggested (from the manual, about Emacs conventions,
and shown as example for `compile.el'), fine. If you
apply some other fix, fine. If you leave it as is, too
bad for some xref users, probably. Or maybe someone
else will fix it later.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 10:52 ` Dmitry Gutov
2019-04-22 10:57 ` Dmitry Gutov
@ 2019-04-22 11:07 ` Drew Adams
2019-04-22 11:18 ` Eli Zaretskii
2020-08-22 14:41 ` Lars Ingebrigtsen
3 siblings, 0 replies; 43+ messages in thread
From: Drew Adams @ 2019-04-22 11:07 UTC (permalink / raw)
To: Dmitry Gutov, Eli Zaretskii; +Cc: 35353
> >>> So we already support mouse-1 clicks, don't we? Or am I again missing
> >>> something?
> >>
> >> Yes, but apparently we don't honor mouse-1-click-follows-link.
> >
> > FWIW, I don't see that as a serious issue in this case. Feel free to
> > close as wontfix, if you want.
>
> The fix is not hard, though. Is the variable more targeted on other use
> cases? Or is it just obscure enough for us not to bother?
The variable is not obscure at all.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 10:52 ` Dmitry Gutov
2019-04-22 10:57 ` Dmitry Gutov
2019-04-22 11:07 ` Drew Adams
@ 2019-04-22 11:18 ` Eli Zaretskii
2019-04-22 11:30 ` Dmitry Gutov
2020-08-22 14:41 ` Lars Ingebrigtsen
3 siblings, 1 reply; 43+ messages in thread
From: Eli Zaretskii @ 2019-04-22 11:18 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: 35353
> Cc: 35353@debbugs.gnu.org
> From: Dmitry Gutov <dgutov@yandex.ru>
> Date: Mon, 22 Apr 2019 13:52:17 +0300
>
> On 22.04.2019 13:21, Eli Zaretskii wrote:
>
> > FWIW, I don't see that as a serious issue in this case. Feel free to
> > close as wontfix, if you want.
>
> The fix is not hard, though. Is the variable more targeted on other use
> cases? Or is it just obscure enough for us not to bother?
>
> The patch looks like this (to be accompanied with an appropriate renaming):
I'm not against fixing this if the fix is easy and doesn't have
unpleasant consequences.
Thanks.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 11:18 ` Eli Zaretskii
@ 2019-04-22 11:30 ` Dmitry Gutov
2019-04-22 11:34 ` Eli Zaretskii
0 siblings, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-04-22 11:30 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 35353
On 22.04.2019 14:18, Eli Zaretskii wrote:
>> The patch looks like this (to be accompanied with an appropriate renaming):
>
> I'm not against fixing this if the fix is easy and doesn't have
> unpleasant consequences.
It takes us the mouse-2 binding? But I guess we could move it to mouse-3?
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 11:30 ` Dmitry Gutov
@ 2019-04-22 11:34 ` Eli Zaretskii
2019-05-02 22:49 ` Dmitry Gutov
0 siblings, 1 reply; 43+ messages in thread
From: Eli Zaretskii @ 2019-04-22 11:34 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: 35353
> Cc: 35353@debbugs.gnu.org
> From: Dmitry Gutov <dgutov@yandex.ru>
> Date: Mon, 22 Apr 2019 14:30:37 +0300
>
> On 22.04.2019 14:18, Eli Zaretskii wrote:
>
> >> The patch looks like this (to be accompanied with an appropriate renaming):
> >
> > I'm not against fixing this if the fix is easy and doesn't have
> > unpleasant consequences.
>
> It takes us the mouse-2 binding? But I guess we could move it to mouse-3?
To tell the truth, I fail to see how mouse-2 and mouse-1 are different
in the default configuration. (They are bound to different commands,
but the effect is the same, AFAICT.)
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 11:34 ` Eli Zaretskii
@ 2019-05-02 22:49 ` Dmitry Gutov
2019-05-03 6:38 ` Eli Zaretskii
0 siblings, 1 reply; 43+ messages in thread
From: Dmitry Gutov @ 2019-05-02 22:49 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 35353
On 22.04.2019 14:34, Eli Zaretskii wrote:
> To tell the truth, I fail to see how mouse-2 and mouse-1 are different
> in the default configuration. (They are bound to different commands,
> but the effect is the same, AFAICT.)
The difference is in which window ends up being selected. Maybe it's not
hugely important, though (I don't remember the last time I used mouse-2
for this purpose).
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-05-02 22:49 ` Dmitry Gutov
@ 2019-05-03 6:38 ` Eli Zaretskii
0 siblings, 0 replies; 43+ messages in thread
From: Eli Zaretskii @ 2019-05-03 6:38 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: 35353
> Cc: 35353@debbugs.gnu.org
> From: Dmitry Gutov <dgutov@yandex.ru>
> Date: Fri, 3 May 2019 01:49:31 +0300
>
> On 22.04.2019 14:34, Eli Zaretskii wrote:
> > To tell the truth, I fail to see how mouse-2 and mouse-1 are different
> > in the default configuration. (They are bound to different commands,
> > but the effect is the same, AFAICT.)
>
> The difference is in which window ends up being selected.
Oh, you mean one of them also selects the XREF buffer's window. Yes,
I see it now, thanks.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 10:52 ` Dmitry Gutov
` (2 preceding siblings ...)
2019-04-22 11:18 ` Eli Zaretskii
@ 2020-08-22 14:41 ` Lars Ingebrigtsen
2020-08-22 17:46 ` Drew Adams
3 siblings, 1 reply; 43+ messages in thread
From: Lars Ingebrigtsen @ 2020-08-22 14:41 UTC (permalink / raw)
To: Dmitry Gutov; +Cc: 35353
Dmitry Gutov <dgutov@yandex.ru> writes:
> The fix is not hard, though. Is the variable more targeted on other
> use cases? Or is it just obscure enough for us not to bother?
>
> The patch looks like this (to be accompanied with an appropriate renaming):
[...]
> - (define-key map [mouse-1] #'xref-goto-xref)
> - (define-key map [mouse-2] #'xref--mouse-2)
> + (define-key map [follow-link] 'mouse-face)
> + (define-key map [mouse-2] #'xref-goto-xref)
> + (define-key map [mouse-1] #'xref--mouse-2)
I think that this is basically what most modes that have clickable stuff
do, so I think it might be the right solution for xref, too (even if
xref doesn't have buttons per se).
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2020-08-22 14:41 ` Lars Ingebrigtsen
@ 2020-08-22 17:46 ` Drew Adams
0 siblings, 0 replies; 43+ messages in thread
From: Drew Adams @ 2020-08-22 17:46 UTC (permalink / raw)
To: Lars Ingebrigtsen, Dmitry Gutov; +Cc: 35353
> > - (define-key map [mouse-1] #'xref-goto-xref)
> > - (define-key map [mouse-2] #'xref--mouse-2)
> > + (define-key map [follow-link] 'mouse-face)
> > + (define-key map [mouse-2] #'xref-goto-xref)
> > + (define-key map [mouse-1] #'xref--mouse-2)
>
> I think that this is basically what most modes that have clickable stuff
> do, so I think it might be the right solution for xref, too (even if
> xref doesn't have buttons per se).
IOW, your conclusion is "Won't fix".
That is not what most modes that have links do.
Most such modes have `down-mouse-1' do
`mouse-drag-region' and `mouse-1' do `mouse-set-point'.
For users who want `mouse-1' to follow a link, it
is option `mouse-1-click-follows-link' that takes
care of that. And even when that is non-nil, a
user can set point with `mouse-1', by simply holding
`mouse-1' pressed more than 450 milliseconds.
That's the behavior that's requested here - the USUAL
Emacs behavior for `mouse-1' on links. Nothing more.
This is nothing new, nothing unusual. What's unusual
is the xref behavior.
^ permalink raw reply [flat|nested] 43+ messages in thread
[parent not found: <<83v9z6732b.fsf@gnu.org>]
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
[not found] ` <<83v9z6732b.fsf@gnu.org>
@ 2019-04-22 11:07 ` Drew Adams
2019-04-22 11:20 ` Eli Zaretskii
0 siblings, 1 reply; 43+ messages in thread
From: Drew Adams @ 2019-04-22 11:07 UTC (permalink / raw)
To: Eli Zaretskii, Dmitry Gutov; +Cc: 35353
> > > So we already support mouse-1 clicks, don't we? Or am I again missing
> > > something?
> >
> > Yes, but apparently we don't honor mouse-1-click-follows-link.
>
> FWIW, I don't see that as a serious issue in this case. Feel free to
> close as wontfix, if you want.
Seriously? Mouse-2 was the original way to follow
links. And ubiquitously in Emacs users need to be
able to set point. They should be able to do so
using `mouse-1'.
We have `mouse-1-click-follows-link' for a reason.
Why should this be the only place (AFAIK) in Emacs
where it is not respected? Any user who uses nil
for that option will find Xref unusable.
Not to mention that this violates the explicit Emacs
convention (cited earlier).
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-22 11:07 ` Drew Adams
@ 2019-04-22 11:20 ` Eli Zaretskii
0 siblings, 0 replies; 43+ messages in thread
From: Eli Zaretskii @ 2019-04-22 11:20 UTC (permalink / raw)
To: Drew Adams; +Cc: 35353, dgutov
> Date: Mon, 22 Apr 2019 04:07:54 -0700 (PDT)
> From: Drew Adams <drew.adams@oracle.com>
> Cc: 35353@debbugs.gnu.org
>
> > > > So we already support mouse-1 clicks, don't we? Or am I again missing
> > > > something?
> > >
> > > Yes, but apparently we don't honor mouse-1-click-follows-link.
> >
> > FWIW, I don't see that as a serious issue in this case. Feel free to
> > close as wontfix, if you want.
>
> Seriously? Mouse-2 was the original way to follow
> links. And ubiquitously in Emacs users need to be
> able to set point. They should be able to do so
> using `mouse-1'.
FWIW, I see no important reasons to set point in XREF buffers by
clicking the mouse.
> Not to mention that this violates the explicit Emacs
> convention (cited earlier).
It doesn't, your citation is not necessarily relevant to the issue at
hand.
^ permalink raw reply [flat|nested] 43+ messages in thread
[parent not found: <<<83v9z6732b.fsf@gnu.org>]
[parent not found: <<<<83v9z6732b.fsf@gnu.org>]
[parent not found: <<83y34273mu.fsf@gnu.org>]
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
[not found] ` <<83y34273mu.fsf@gnu.org>
@ 2019-04-22 10:58 ` Drew Adams
0 siblings, 0 replies; 43+ messages in thread
From: Drew Adams @ 2019-04-22 10:58 UTC (permalink / raw)
To: Eli Zaretskii, Dmitry Gutov; +Cc: 35353
> > > I'm not sure I follow: currently, mouse-2 does "follow the link"
> > > already,
> >
> > It calls xref--mouse-2, see xref--button-map.
> > That function displays the location, but keeps the Xref window selected.
> >
> > > and I believe this bug report will be satisfied if we cause
> > > mouse-1 to do the same when mouse-1-click-follows-link is in effect.
> > > And mouse-1 is not currently bound in Xref buffers.
> >
> > ?? It's bound to xref-goto-xref, see the same map.
>
> Sorry, I just looked in the manual.
> So we already support mouse-1 clicks, don't we?
> Or am I again missing something?
What do you mean by "support mouse-1 clicks"?
We support them following a link, but we don't
support them not following a link.
`mouse-1' clicks follow the link, regardless of
`mouse-1-click-follows-link'. When that variable
is nil a `mouse-1' click should not follow a link.
In the nil case it should typically (default
behavior) just set point (or begin a region drag) -
`mouse-drag-region' for `down-mouse-1' and
`mouse-set-point' for `mouse-1'.
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2019-04-21 2:50 bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name Drew Adams
2019-04-21 13:27 ` Drew Adams
@ 2022-04-29 12:01 ` Lars Ingebrigtsen
2022-04-29 17:13 ` Juri Linkov
1 sibling, 1 reply; 43+ messages in thread
From: Lars Ingebrigtsen @ 2022-04-29 12:01 UTC (permalink / raw)
To: Drew Adams; +Cc: 35353
Drew Adams <drew.adams@oracle.com> writes:
> 1. I use `mouse-1-click-follows-link' = nil. (I use `mouse-2', not
> `mouse-1', to follow clicked links, buttons, etc.) But this
> setting seems to have no effect in buffer `*xref*'.
>
> Except by clicking on a file line (it seems), I find it impossible
> to click `mouse-1' without having Emacs follow a link; impossible
> to set point in the buffer using `mouse-1'; no way to just click
> buffer text to select its frame. What's that all about?
I've now fixed this in Emacs 29.
> 2. I try `C-h m' or `C-h v major-mode' to find out more about what's
> going on, and I learn that the major mode is called
> `xref--xref-buffer-mode'. Seriously? Why? It seems very wrong
> and unEmacsy to give a major mode an "internal" name. Users
> examine major modes. That's part of the usual help system for
> even casual users.
That is pretty unusual naming for a major mode, but I don't think it's
worth changing at this point.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
^ permalink raw reply [flat|nested] 43+ messages in thread
* bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name
2022-04-29 12:01 ` Lars Ingebrigtsen
@ 2022-04-29 17:13 ` Juri Linkov
0 siblings, 0 replies; 43+ messages in thread
From: Juri Linkov @ 2022-04-29 17:13 UTC (permalink / raw)
To: Lars Ingebrigtsen; +Cc: 35353
>> 1. I use `mouse-1-click-follows-link' = nil. (I use `mouse-2', not
>> `mouse-1', to follow clicked links, buttons, etc.) But this
>> setting seems to have no effect in buffer `*xref*'.
>>
>> Except by clicking on a file line (it seems), I find it impossible
>> to click `mouse-1' without having Emacs follow a link; impossible
>> to set point in the buffer using `mouse-1'; no way to just click
>> buffer text to select its frame. What's that all about?
>
> I've now fixed this in Emacs 29.
It seems this is unnecessary:
(when mouse-1-click-follows-link
(define-key map [mouse-1] #'xref-goto-xref))
because `[follow-link]' takes care about handling `mouse-1-click-follows-link'.
^ permalink raw reply [flat|nested] 43+ messages in thread
end of thread, other threads:[~2022-04-29 17:13 UTC | newest]
Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-21 2:50 bug#35353: 26.2; Buffer *xref*: (1) hard-coded mouse-1, (2) major mode name Drew Adams
2019-04-21 13:27 ` Drew Adams
2019-04-22 9:24 ` Dmitry Gutov
2019-04-22 9:42 ` Eli Zaretskii
2019-04-22 9:48 ` Dmitry Gutov
2019-04-22 10:09 ` Eli Zaretskii
2019-04-22 10:18 ` Dmitry Gutov
2019-04-22 10:21 ` Eli Zaretskii
2019-04-22 10:52 ` Dmitry Gutov
2019-04-22 10:57 ` Dmitry Gutov
2019-04-22 11:42 ` Phil Sainty
2019-04-22 13:08 ` Drew Adams
2019-05-02 22:35 ` Dmitry Gutov
2019-05-02 23:22 ` Drew Adams
2019-05-02 23:31 ` Dmitry Gutov
2019-05-03 0:27 ` Drew Adams
2019-05-04 21:21 ` Richard Stallman
2019-05-04 22:25 ` Drew Adams
2019-05-05 22:50 ` Richard Stallman
2019-05-06 0:40 ` Drew Adams
2019-05-06 8:45 ` Dmitry Gutov
2019-05-06 13:29 ` Drew Adams
2019-05-02 22:48 ` Dmitry Gutov
2019-05-02 23:22 ` Drew Adams
2019-05-02 23:34 ` Dmitry Gutov
2019-05-03 0:27 ` Drew Adams
2019-04-22 11:07 ` Drew Adams
2019-04-22 11:18 ` Eli Zaretskii
2019-04-22 11:30 ` Dmitry Gutov
2019-04-22 11:34 ` Eli Zaretskii
2019-05-02 22:49 ` Dmitry Gutov
2019-05-03 6:38 ` Eli Zaretskii
2020-08-22 14:41 ` Lars Ingebrigtsen
2020-08-22 17:46 ` Drew Adams
[not found] ` <<83v9z6732b.fsf@gnu.org>
2019-04-22 11:07 ` Drew Adams
2019-04-22 11:20 ` Eli Zaretskii
[not found] ` <<<83v9z6732b.fsf@gnu.org>
[not found] ` <<376d5335-eb80-4272-8847-e764242a02b7@default>
[not found] ` <<83r29u70cy.fsf@gnu.org>
2019-04-22 12:23 ` Drew Adams
2019-04-22 13:05 ` Eli Zaretskii
[not found] ` <<<<83v9z6732b.fsf@gnu.org>
[not found] ` <<<376d5335-eb80-4272-8847-e764242a02b7@default>
[not found] ` <<<83r29u70cy.fsf@gnu.org>
[not found] ` <<c1e7f520-7dff-41e0-ba01-9828b87cb703@default>
[not found] ` <<83imv66vi2.fsf@gnu.org>
2019-04-22 13:23 ` Drew Adams
2019-04-22 13:33 ` Eli Zaretskii
[not found] ` <<83y34273mu.fsf@gnu.org>
2019-04-22 10:58 ` Drew Adams
2022-04-29 12:01 ` Lars Ingebrigtsen
2022-04-29 17:13 ` Juri Linkov
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.