unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#43865: mml-attach-file could call system file chooser
@ 2020-10-08 11:45 積丹尼 Dan Jacobson
  2020-10-08 11:58 ` Eli Zaretskii
  2020-10-09  4:43 ` Lars Ingebrigtsen
  0 siblings, 2 replies; 20+ messages in thread
From: 積丹尼 Dan Jacobson @ 2020-10-08 11:45 UTC (permalink / raw)
  To: 43865

C-c C-a runs the command mml-attach-file (found in message-mode-map),
which is an interactive autoloaded compiled Lisp function in
‘mml.el’.

OK, but wouldn't it be nice if this could call the "system file chooser"
like Firefox and Chromium do when picking files?

That way one could e.g., even see a preview of each JPG before selecting the
right one.





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 11:45 bug#43865: mml-attach-file could call system file chooser 積丹尼 Dan Jacobson
@ 2020-10-08 11:58 ` Eli Zaretskii
  2020-10-08 12:12   ` Eli Zaretskii
  2020-10-08 12:28   ` Robert Pluim
  2020-10-09  4:43 ` Lars Ingebrigtsen
  1 sibling, 2 replies; 20+ messages in thread
From: Eli Zaretskii @ 2020-10-08 11:58 UTC (permalink / raw)
  To: 積丹尼 Dan Jacobson; +Cc: 43865

> From: 積丹尼 Dan Jacobson
>  <jidanni@jidanni.org>
> Date: Thu, 08 Oct 2020 19:45:59 +0800
> 
> C-c C-a runs the command mml-attach-file (found in message-mode-map),
> which is an interactive autoloaded compiled Lisp function in
> ‘mml.el’.
> 
> OK, but wouldn't it be nice if this could call the "system file chooser"
> like Firefox and Chromium do when picking files?

Emacs pops up the file selection dialog when the command that prompts
for a file was invoked from a mouse-click event (some menu or tool-bar
button).  When the command is invoked from the keyboard, we don't show
the GUI dialogs.  See the variable use-dialog-box.

This is not a bug, but the usual Emacs behavior.





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 11:58 ` Eli Zaretskii
@ 2020-10-08 12:12   ` Eli Zaretskii
  2020-10-08 12:32     ` 積丹尼 Dan Jacobson
  2020-10-08 12:28   ` Robert Pluim
  1 sibling, 1 reply; 20+ messages in thread
From: Eli Zaretskii @ 2020-10-08 12:12 UTC (permalink / raw)
  To: jidanni; +Cc: 43865

> Date: Thu, 08 Oct 2020 14:58:52 +0300
> From: Eli Zaretskii <eliz@gnu.org>
> Cc: 43865@debbugs.gnu.org
> 
> See the variable use-dialog-box.

And the companion variable use-file-dialog.





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 11:58 ` Eli Zaretskii
  2020-10-08 12:12   ` Eli Zaretskii
@ 2020-10-08 12:28   ` Robert Pluim
  2020-10-08 12:55     ` Eli Zaretskii
  1 sibling, 1 reply; 20+ messages in thread
From: Robert Pluim @ 2020-10-08 12:28 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 43865, 積丹尼 Dan Jacobson

>>>>> On Thu, 08 Oct 2020 14:58:52 +0300, Eli Zaretskii <eliz@gnu.org> said:

    >> From: 積丹尼 Dan Jacobson
    >> <jidanni@jidanni.org>
    >> Date: Thu, 08 Oct 2020 19:45:59 +0800
    >> 
    >> C-c C-a runs the command mml-attach-file (found in message-mode-map),
    >> which is an interactive autoloaded compiled Lisp function in
    >> ‘mml.el’.
    >> 
    >> OK, but wouldn't it be nice if this could call the "system file chooser"
    >> like Firefox and Chromium do when picking files?

    Eli> Emacs pops up the file selection dialog when the command that prompts
    Eli> for a file was invoked from a mouse-click event (some menu or tool-bar
    Eli> button).  When the command is invoked from the keyboard, we don't show
    Eli> the GUI dialogs.  See the variable use-dialog-box.

    Eli> This is not a bug, but the usual Emacs behavior.

True, but I think this was more of a feature request. How about we
allow use-dialog-box and use-file-dialog to have a value of 'always?
This might even be a good 'starter pack' setting.

Robert
-- 





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 12:12   ` Eli Zaretskii
@ 2020-10-08 12:32     ` 積丹尼 Dan Jacobson
  2020-10-08 12:56       ` Eli Zaretskii
  0 siblings, 1 reply; 20+ messages in thread
From: 積丹尼 Dan Jacobson @ 2020-10-08 12:32 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 43865

>>>>> "EZ" == Eli Zaretskii <eliz@gnu.org> writes:
>> See the variable use-dialog-box.
EZ> And the companion variable use-file-dialog.

Testing with emacs -q:
Both are "'t", but C-c C-a still doesn't turn on the file chooser.
I still need to click "Attach File" from the tool bar to do that.
But I want C-c C-a also to do that. But it doesn't.
emacs-version "26.3",

We also note some side effects mentioned
"On some platforms, file selection dialogs are also enabled if this is
non-nil."

I hope all this isn't too bundled together.

(I want a way to have C-c C-a call the file chooser,
but have both variables still nil (which is in fact how I usually have them.)






^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 12:28   ` Robert Pluim
@ 2020-10-08 12:55     ` Eli Zaretskii
  2020-10-08 14:05       ` Robert Pluim
  0 siblings, 1 reply; 20+ messages in thread
From: Eli Zaretskii @ 2020-10-08 12:55 UTC (permalink / raw)
  To: Robert Pluim; +Cc: 43865, jidanni

> From: Robert Pluim <rpluim@gmail.com>
> Cc: 積丹尼 Dan Jacobson <jidanni@jidanni.org>,
>   43865@debbugs.gnu.org
> Date: Thu, 08 Oct 2020 14:28:16 +0200
> 
> True, but I think this was more of a feature request. How about we
> allow use-dialog-box and use-file-dialog to have a value of 'always?

Does that really work?  Doesn't the mouse click even bring some
information needed by the dialog?  I guess it's okay if not, although
I wouldn't be building such a new feature on a single request.  But
that's me.







^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 12:32     ` 積丹尼 Dan Jacobson
@ 2020-10-08 12:56       ` Eli Zaretskii
  2020-10-08 13:05         ` 積丹尼 Dan Jacobson
  0 siblings, 1 reply; 20+ messages in thread
From: Eli Zaretskii @ 2020-10-08 12:56 UTC (permalink / raw)
  To: 積丹尼 Dan Jacobson; +Cc: 43865

> From: 積丹尼 Dan Jacobson <jidanni@jidanni.org>
> Cc: 43865@debbugs.gnu.org
> Date: Thu, 08 Oct 2020 20:32:23 +0800
> 
> >>>>> "EZ" == Eli Zaretskii <eliz@gnu.org> writes:
> >> See the variable use-dialog-box.
> EZ> And the companion variable use-file-dialog.
> 
> Testing with emacs -q:
> Both are "'t", but C-c C-a still doesn't turn on the file chooser.
> I still need to click "Attach File" from the tool bar to do that.
> But I want C-c C-a also to do that. But it doesn't.

Yes, as documented.





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 12:56       ` Eli Zaretskii
@ 2020-10-08 13:05         ` 積丹尼 Dan Jacobson
  2020-10-08 13:12           ` Eli Zaretskii
  0 siblings, 1 reply; 20+ messages in thread
From: 積丹尼 Dan Jacobson @ 2020-10-08 13:05 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 43865

Face the facts, no matter what settings you mentioned,
no matter what the values, C-c C-a is not going to start the system's
file chooser!

No file chooser for Grandpa.

>>>>> "EZ" == Eli Zaretskii <eliz@gnu.org> writes:
>> From: 積丹尼 Dan Jacobson <jidanni@jidanni.org>
>> Cc: 43865@debbugs.gnu.org
>> Date: Thu, 08 Oct 2020 20:32:23 +0800
>> 
>> >>>>> "EZ" == Eli Zaretskii <eliz@gnu.org> writes:
>> >> See the variable use-dialog-box.
EZ> And the companion variable use-file-dialog.
>> 
>> Testing with emacs -q:
>> Both are "'t", but C-c C-a still doesn't turn on the file chooser.
>> I still need to click "Attach File" from the tool bar to do that.
>> But I want C-c C-a also to do that. But it doesn't.

EZ> Yes, as documented.






^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 13:05         ` 積丹尼 Dan Jacobson
@ 2020-10-08 13:12           ` Eli Zaretskii
  2020-10-08 13:22             ` 積丹尼 Dan Jacobson
  0 siblings, 1 reply; 20+ messages in thread
From: Eli Zaretskii @ 2020-10-08 13:12 UTC (permalink / raw)
  To: 積丹尼 Dan Jacobson; +Cc: 43865

> From: 積丹尼 Dan Jacobson <jidanni@jidanni.org>
> Cc: 43865@debbugs.gnu.org
> Date: Thu, 08 Oct 2020 21:05:11 +0800
> 
> Face the facts, no matter what settings you mentioned,
> no matter what the values, C-c C-a is not going to start the system's
> file chooser!
> 
> No file chooser for Grandpa.

Yes, as documented.





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 13:12           ` Eli Zaretskii
@ 2020-10-08 13:22             ` 積丹尼 Dan Jacobson
  2020-10-08 13:28               ` Eli Zaretskii
  0 siblings, 1 reply; 20+ messages in thread
From: 積丹尼 Dan Jacobson @ 2020-10-08 13:22 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 43865

OK anybody, how can I hack C-c C-a to call the file chooser?
Thanks.

>>>>> "EZ" == Eli Zaretskii <eliz@gnu.org> writes:
EZ> Yes, as documented.






^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 13:22             ` 積丹尼 Dan Jacobson
@ 2020-10-08 13:28               ` Eli Zaretskii
  2020-10-08 13:39                 ` 積丹尼 Dan Jacobson
  0 siblings, 1 reply; 20+ messages in thread
From: Eli Zaretskii @ 2020-10-08 13:28 UTC (permalink / raw)
  To: 積丹尼 Dan Jacobson; +Cc: 43865

> From: 積丹尼 Dan Jacobson <jidanni@jidanni.org>
> Cc: 43865@debbugs.gnu.org
> Date: Thu, 08 Oct 2020 21:22:52 +0800
> 
> OK anybody, how can I hack C-c C-a to call the file chooser?

Click the mouse on the Attachments->Attach File from the menu bar, or
on the tool-bar button that shows a note with a clip.





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 13:28               ` Eli Zaretskii
@ 2020-10-08 13:39                 ` 積丹尼 Dan Jacobson
  0 siblings, 0 replies; 20+ messages in thread
From: 積丹尼 Dan Jacobson @ 2020-10-08 13:39 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 43865

>>>>> "EZ" == Eli Zaretskii <eliz@gnu.org> writes:
>> From: 積丹尼 Dan Jacobson <jidanni@jidanni.org>
>> Cc: 43865@debbugs.gnu.org
>> Date: Thu, 08 Oct 2020 21:22:52 +0800
>> 
>> OK anybody, how can I hack C-c C-a to call the file chooser?

EZ> Click the mouse on the Attachments->Attach File from the menu bar, or
EZ> on the tool-bar button that shows a note with a clip.

But I want to use C-c C-a. I only want to use the mouse when the file
chooser appears. In fact I have the menu-bar and tool-bar both turned
off too.

In fact if there was a way for C-c C-a to be configured to call the
system file choooser, no mouse would be ever needed: TAB TAB TAB etc.
could navigate everywhere. So what we are seeing here is an uncrossable
accessibility canyon due to this little gap!





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 12:55     ` Eli Zaretskii
@ 2020-10-08 14:05       ` Robert Pluim
  0 siblings, 0 replies; 20+ messages in thread
From: Robert Pluim @ 2020-10-08 14:05 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 43865, jidanni

>>>>> On Thu, 08 Oct 2020 15:55:06 +0300, Eli Zaretskii <eliz@gnu.org> said:

    >> From: Robert Pluim <rpluim@gmail.com>
    >> Cc: 積丹尼 Dan Jacobson <jidanni@jidanni.org>,
    >> 43865@debbugs.gnu.org
    >> Date: Thu, 08 Oct 2020 14:28:16 +0200
    >> 
    >> True, but I think this was more of a feature request. How about we
    >> allow use-dialog-box and use-file-dialog to have a value of 'always?

    Eli> Does that really work?  Doesn't the mouse click even bring some
    Eli> information needed by the dialog?  I guess it's okay if not, although
    Eli> I wouldn't be building such a new feature on a single request.  But
    Eli> that's me.

Based on hacking 'next-read-file-uses-dialog-p' to always return t,
things work fine for at least 'find-file' and 'mml-attach-file'

Robert
-- 





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-08 11:45 bug#43865: mml-attach-file could call system file chooser 積丹尼 Dan Jacobson
  2020-10-08 11:58 ` Eli Zaretskii
@ 2020-10-09  4:43 ` Lars Ingebrigtsen
  2020-10-09  8:01   ` Kévin Le Gouguec
  2020-10-09 14:32   ` 積丹尼 Dan Jacobson
  1 sibling, 2 replies; 20+ messages in thread
From: Lars Ingebrigtsen @ 2020-10-09  4:43 UTC (permalink / raw)
  To: 積丹尼 Dan Jacobson; +Cc: 43865

As others have noted, everything here seems to work as designed.  If you
wish to have a visual file chooser for some commands even when invoked
from a keyboard command, you could add that yourself.  But it doesn't
seem generally useful, so I'm closing this bug report.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no






^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-09  4:43 ` Lars Ingebrigtsen
@ 2020-10-09  8:01   ` Kévin Le Gouguec
  2020-10-10 20:17     ` Lars Ingebrigtsen
  2020-10-09 14:32   ` 積丹尼 Dan Jacobson
  1 sibling, 1 reply; 20+ messages in thread
From: Kévin Le Gouguec @ 2020-10-09  8:01 UTC (permalink / raw)
  To: 43865

Lars Ingebrigtsen <larsi@gnus.org> writes:

> As others have noted, everything here seems to work as designed.  If you
> wish to have a visual file chooser for some commands even when invoked
> from a keyboard command, you could add that yourself.  But it doesn't
> seem generally useful, so I'm closing this bug report.

I'm fine with file selection from the minibuffer, so this is not the
hill I'll die on, but FWIW:

I agree with Robert's interpretation of Dan's report here, this makes
sense to me as a feature request.  Other Software™ usually present a
visual file chooser whether the user clicked File > Open or typed
Control+O, so some users could prefer the hypothetical 'always behaviour
Robert suggested.






^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-09  4:43 ` Lars Ingebrigtsen
  2020-10-09  8:01   ` Kévin Le Gouguec
@ 2020-10-09 14:32   ` 積丹尼 Dan Jacobson
  2020-10-10  4:00     ` Richard Stallman
  1 sibling, 1 reply; 20+ messages in thread
From: 積丹尼 Dan Jacobson @ 2020-10-09 14:32 UTC (permalink / raw)
  To: rms; +Cc: 43865, Lars Ingebrigtsen

Hmmm, RMS likes using the keyboard. So there should be a way to invoke a
visual chooser from keyboard.

>>>>> "LI" == Lars Ingebrigtsen <larsi@gnus.org> writes:
LI> As others have noted, everything here seems to work as designed.  If you
LI> wish to have a visual file chooser for some commands even when invoked
LI> from a keyboard command, you could add that yourself.  But it doesn't
LI> seem generally useful, so I'm closing this bug report.





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-09 14:32   ` 積丹尼 Dan Jacobson
@ 2020-10-10  4:00     ` Richard Stallman
  0 siblings, 0 replies; 20+ messages in thread
From: Richard Stallman @ 2020-10-10  4:00 UTC (permalink / raw)
  To: 積丹尼 Dan Jacobson
  Cc: 43865, larsi

[[[ 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. ]]]

  > Hmmm, RMS likes using the keyboard. So there should be a way to invoke a
  > visual chooser from keyboard.

Doesn't Dired do that?

-- 
Dr Richard Stallman
Chief GNUisance of the GNU Project (https://gnu.org)
Founder, Free Software Foundation (https://fsf.org)
Internet Hall-of-Famer (https://internethalloffame.org)







^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-09  8:01   ` Kévin Le Gouguec
@ 2020-10-10 20:17     ` Lars Ingebrigtsen
  2020-10-12  9:20       ` Robert Pluim
  2020-10-12 11:35       ` 積丹尼 Dan Jacobson
  0 siblings, 2 replies; 20+ messages in thread
From: Lars Ingebrigtsen @ 2020-10-10 20:17 UTC (permalink / raw)
  To: Kévin Le Gouguec; +Cc: 43865, 積丹尼 Dan Jacobson

Kévin Le Gouguec <kevin.legouguec@gmail.com> writes:

> I agree with Robert's interpretation of Dan's report here, this makes
> sense to me as a feature request.  Other Software™ usually present a
> visual file chooser whether the user clicked File > Open or typed
> Control+O, so some users could prefer the hypothetical 'always behaviour
> Robert suggested.

I'm not opposed to a user option like that, but I do wonder whether it'd
be used a lot: If `C-x C-f' popped up a graphical file chooser, I think
I'd grow pretty tired of it.

Perhaps I closed this bug report prematurely -- Dan has a point here:
`C-c C-a' in Message is kinda special in one way, in that it's commonly
used to insert images and the like into an email.  For images, you want
the graphical file chooser, because it often shows you thumbnails and
stuff.

With `C-x C-f', the overwhelming number of things you'd open would be
text files, and no thumbnails help with that.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-10 20:17     ` Lars Ingebrigtsen
@ 2020-10-12  9:20       ` Robert Pluim
  2020-10-12 11:35       ` 積丹尼 Dan Jacobson
  1 sibling, 0 replies; 20+ messages in thread
From: Robert Pluim @ 2020-10-12  9:20 UTC (permalink / raw)
  To: Lars Ingebrigtsen
  Cc: 43865, Kévin Le Gouguec,
	積丹尼 Dan Jacobson

>>>>> On Sat, 10 Oct 2020 22:17:05 +0200, Lars Ingebrigtsen <larsi@gnus.org> said:

    Lars> Kévin Le Gouguec <kevin.legouguec@gmail.com> writes:
    >> I agree with Robert's interpretation of Dan's report here, this makes
    >> sense to me as a feature request.  Other Software™ usually present a
    >> visual file chooser whether the user clicked File > Open or typed
    >> Control+O, so some users could prefer the hypothetical 'always behaviour
    >> Robert suggested.

    Lars> I'm not opposed to a user option like that, but I do wonder whether it'd
    Lars> be used a lot: If `C-x C-f' popped up a graphical file chooser, I think
    Lars> I'd grow pretty tired of it.

You would, I would, but our hypothetical new user would be expecting
it.

    Lars> Perhaps I closed this bug report prematurely -- Dan has a point here:
    Lars> `C-c C-a' in Message is kinda special in one way, in that it's commonly
    Lars> used to insert images and the like into an email.  For images, you want
    Lars> the graphical file chooser, because it often shows you thumbnails and
    Lars> stuff.

    Lars> With `C-x C-f', the overwhelming number of things you'd open would be
    Lars> text files, and no thumbnails help with that.

This suggests we should have several options for this:

- never
- when invoked by mouse
- always
- only for specific commands

Robert
-- 





^ permalink raw reply	[flat|nested] 20+ messages in thread

* bug#43865: mml-attach-file could call system file chooser
  2020-10-10 20:17     ` Lars Ingebrigtsen
  2020-10-12  9:20       ` Robert Pluim
@ 2020-10-12 11:35       ` 積丹尼 Dan Jacobson
  1 sibling, 0 replies; 20+ messages in thread
From: 積丹尼 Dan Jacobson @ 2020-10-12 11:35 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: 43865, Kévin Le Gouguec

[-- Attachment #1: Type: text/plain, Size: 434 bytes --]

>>>>> "LI" == Lars Ingebrigtsen <larsi@gnus.org> writes:

LI> Perhaps I closed this bug report prematurely -- Dan has a point here:
LI> `C-c C-a' in Message is kinda special in one way, in that it's commonly
LI> used to insert images and the like into an email.  For images, you want
LI> the graphical file chooser, because it often shows you thumbnails and
LI> stuff.

Bad news dudes, I just compared Firefox's visual file chooser:


[-- Attachment #2: Firefox's --]
[-- Type: image/jpeg, Size: 55979 bytes --]

[-- Attachment #3: Type: text/plain, Size: 14 bytes --]


and Emacs',


[-- Attachment #4: Emacs' --]
[-- Type: image/jpeg, Size: 70739 bytes --]

[-- Attachment #5: Type: text/plain, Size: 419 bytes --]


and Emacs' doesn't have thumbnails, meaning it is not going to help us,
er, prevent us from accidentally attaching a naked picture of grand*a,
when we thought we were attaching that sphygmograph JPG from last week's
lab test.

P.S., Emacs' says in the image "If you don't like this file selector..."
Well we do! We just oddly aren't allowed to call it via the keyboard.
Also we wish it had thumbnails for image files.

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2020-10-12 11:35 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-08 11:45 bug#43865: mml-attach-file could call system file chooser 積丹尼 Dan Jacobson
2020-10-08 11:58 ` Eli Zaretskii
2020-10-08 12:12   ` Eli Zaretskii
2020-10-08 12:32     ` 積丹尼 Dan Jacobson
2020-10-08 12:56       ` Eli Zaretskii
2020-10-08 13:05         ` 積丹尼 Dan Jacobson
2020-10-08 13:12           ` Eli Zaretskii
2020-10-08 13:22             ` 積丹尼 Dan Jacobson
2020-10-08 13:28               ` Eli Zaretskii
2020-10-08 13:39                 ` 積丹尼 Dan Jacobson
2020-10-08 12:28   ` Robert Pluim
2020-10-08 12:55     ` Eli Zaretskii
2020-10-08 14:05       ` Robert Pluim
2020-10-09  4:43 ` Lars Ingebrigtsen
2020-10-09  8:01   ` Kévin Le Gouguec
2020-10-10 20:17     ` Lars Ingebrigtsen
2020-10-12  9:20       ` Robert Pluim
2020-10-12 11:35       ` 積丹尼 Dan Jacobson
2020-10-09 14:32   ` 積丹尼 Dan Jacobson
2020-10-10  4:00     ` Richard Stallman

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).