unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
@ 2024-06-23  9:40 Ihor Radchenko
  2024-06-23 10:12 ` Eli Zaretskii
  0 siblings, 1 reply; 15+ messages in thread
From: Ihor Radchenko @ 2024-06-23  9:40 UTC (permalink / raw)
  To: 71732; +Cc: Eli Zaretskii, Björn Bidar


Follow-up from "Please document the caching and its user options"
https://yhetil.org/emacs-devel/86le35rwyp.fsf@gnu.org/

Currently `xdg-cache-home`, and other functions in xdg.el only return
the path, but never create any directories.

However, to follow XDG spec, XDG directories must follow certain
rules. In particular:

    If, when attempting to write a file, the destination directory is
    non-existent an attempt should be made to create it with permission
    0700. If the destination directory exists already the permissions
    should not be changed.
  https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html

May you please add a functionality to xdg.el to create the directory
with right permissions, so that xdg.el users do not need to know these
technical details of the spec?

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23  9:40 bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist Ihor Radchenko
@ 2024-06-23 10:12 ` Eli Zaretskii
  2024-06-23 10:20   ` Ihor Radchenko
  0 siblings, 1 reply; 15+ messages in thread
From: Eli Zaretskii @ 2024-06-23 10:12 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: bjorn.bidar, 71732

> Cc: Eli Zaretskii <eliz@gnu.org>, Björn Bidar <bjorn.bidar@thaodan.de>
> From: Ihor Radchenko <yantar92@posteo.net>
> Date: Sun, 23 Jun 2024 09:40:49 +0000
> 
> Currently `xdg-cache-home`, and other functions in xdg.el only return
> the path, but never create any directories.

Yes, because whether or not to create a missing directory is up to the
calling application.  For example, if the application is looking for a
file in several possible locations, then a missing directory means
that particular location doesn't have the file, and the application
should look in the other places.

> However, to follow XDG spec, XDG directories must follow certain
> rules. In particular:
> 
>     If, when attempting to write a file, the destination directory is
>     non-existent an attempt should be made to create it with permission
>     0700. If the destination directory exists already the permissions
>     should not be changed.
>   https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
> 
> May you please add a functionality to xdg.el to create the directory
> with right permissions, so that xdg.el users do not need to know these
> technical details of the spec?

xdg.el is not about creating directories, it is about returning their
names.

The ability to create a directory with arbitrary permissions already
exists, and Emacs uses that in umpteen places.  So I'm not sure what
is missing here.  Not every two-liner needs a dedicated named API.





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 10:12 ` Eli Zaretskii
@ 2024-06-23 10:20   ` Ihor Radchenko
  2024-06-23 10:24     ` Eli Zaretskii
  0 siblings, 1 reply; 15+ messages in thread
From: Ihor Radchenko @ 2024-06-23 10:20 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: bjorn.bidar, 71732

Eli Zaretskii <eliz@gnu.org> writes:

>> May you please add a functionality to xdg.el to create the directory
>> with right permissions, so that xdg.el users do not need to know these
>> technical details of the spec?
>
> xdg.el is not about creating directories, it is about returning their
> names.
>
> The ability to create a directory with arbitrary permissions already
> exists, and Emacs uses that in umpteen places.  So I'm not sure what
> is missing here.  Not every two-liner needs a dedicated named API.

The missing part is creating a directory that follows XDG spec without
having to consult that spec.

For example, I had no clue that applications using XDG are obliged to
create XDG dirs with 0700 persmissions until someone pointed.

I believe that such technical details would fit within xdg.el API.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 10:20   ` Ihor Radchenko
@ 2024-06-23 10:24     ` Eli Zaretskii
  2024-06-23 10:35       ` Ihor Radchenko
  0 siblings, 1 reply; 15+ messages in thread
From: Eli Zaretskii @ 2024-06-23 10:24 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: bjorn.bidar, 71732

> From: Ihor Radchenko <yantar92@posteo.net>
> Cc: 71732@debbugs.gnu.org, bjorn.bidar@thaodan.de
> Date: Sun, 23 Jun 2024 10:20:34 +0000
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> >> May you please add a functionality to xdg.el to create the directory
> >> with right permissions, so that xdg.el users do not need to know these
> >> technical details of the spec?
> >
> > xdg.el is not about creating directories, it is about returning their
> > names.
> >
> > The ability to create a directory with arbitrary permissions already
> > exists, and Emacs uses that in umpteen places.  So I'm not sure what
> > is missing here.  Not every two-liner needs a dedicated named API.
> 
> The missing part is creating a directory that follows XDG spec without
> having to consult that spec.
> 
> For example, I had no clue that applications using XDG are obliged to
> create XDG dirs with 0700 persmissions until someone pointed.

Emacs applications are not obliged to abide by what the XDG spec (or
any spec) says.  Whether a directory we create under some XDG
directory should or should not have those permissions is something the
author of the Lisp program should consider and decide.

> I believe that such technical details would fit within xdg.el API.

I disagree, mainly because the details are not part of XDG, they are
part of the design and the implementation of the particular Lisp
program using the XDG directories.





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 10:24     ` Eli Zaretskii
@ 2024-06-23 10:35       ` Ihor Radchenko
  2024-06-23 11:29         ` Eli Zaretskii
  0 siblings, 1 reply; 15+ messages in thread
From: Ihor Radchenko @ 2024-06-23 10:35 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: bjorn.bidar, 71732

Eli Zaretskii <eliz@gnu.org> writes:

> Emacs applications are not obliged to abide by what the XDG spec (or
> any spec) says.  Whether a directory we create under some XDG
> directory should or should not have those permissions is something the
> author of the Lisp program should consider and decide.

Let me clarify: I did not mean creating a directory _under_ XDG
directory. I meant creating XDG directory itself - it is regulated by
XDG spec.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 10:35       ` Ihor Radchenko
@ 2024-06-23 11:29         ` Eli Zaretskii
  2024-06-23 11:42           ` Ihor Radchenko
  0 siblings, 1 reply; 15+ messages in thread
From: Eli Zaretskii @ 2024-06-23 11:29 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: bjorn.bidar, 71732

> From: Ihor Radchenko <yantar92@posteo.net>
> Cc: 71732@debbugs.gnu.org, bjorn.bidar@thaodan.de
> Date: Sun, 23 Jun 2024 10:35:59 +0000
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> > Emacs applications are not obliged to abide by what the XDG spec (or
> > any spec) says.  Whether a directory we create under some XDG
> > directory should or should not have those permissions is something the
> > author of the Lisp program should consider and decide.
> 
> Let me clarify: I did not mean creating a directory _under_ XDG
> directory. I meant creating XDG directory itself - it is regulated by
> XDG spec.

Yes, I understood, and my response includes that part as well.





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 11:29         ` Eli Zaretskii
@ 2024-06-23 11:42           ` Ihor Radchenko
  2024-06-23 11:53             ` Eli Zaretskii
  0 siblings, 1 reply; 15+ messages in thread
From: Ihor Radchenko @ 2024-06-23 11:42 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: bjorn.bidar, 71732

Eli Zaretskii <eliz@gnu.org> writes:

>> Let me clarify: I did not mean creating a directory _under_ XDG
>> directory. I meant creating XDG directory itself - it is regulated by
>> XDG spec.
>
> Yes, I understood, and my response includes that part as well.

Then, I do not understand your

  >>> ...I disagree, mainly because the details are not part of XDG

According to
https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html,
0700 permission is a part of XDG spec.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 11:42           ` Ihor Radchenko
@ 2024-06-23 11:53             ` Eli Zaretskii
  2024-06-23 12:12               ` Ihor Radchenko
                                 ` (2 more replies)
  0 siblings, 3 replies; 15+ messages in thread
From: Eli Zaretskii @ 2024-06-23 11:53 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: bjorn.bidar, 71732

> From: Ihor Radchenko <yantar92@posteo.net>
> Cc: 71732@debbugs.gnu.org, bjorn.bidar@thaodan.de
> Date: Sun, 23 Jun 2024 11:42:47 +0000
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> >> Let me clarify: I did not mean creating a directory _under_ XDG
> >> directory. I meant creating XDG directory itself - it is regulated by
> >> XDG spec.
> >
> > Yes, I understood, and my response includes that part as well.
> 
> Then, I do not understand your
> 
>   >>> ...I disagree, mainly because the details are not part of XDG
> 
> According to
> https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html,
> 0700 permission is a part of XDG spec.

I already explained that: we don't blindly follow any standards, and
this particular issue is up to the calling Lisp program.  xdg.el has
no business forcing permissions on the caller.





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 11:53             ` Eli Zaretskii
@ 2024-06-23 12:12               ` Ihor Radchenko
  2024-06-23 12:21                 ` Eli Zaretskii
  2024-06-23 21:09               ` Björn Bidar via Bug reports for GNU Emacs, the Swiss army knife of text editors
       [not found]               ` <87tthjgyct.fsf@>
  2 siblings, 1 reply; 15+ messages in thread
From: Ihor Radchenko @ 2024-06-23 12:12 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: bjorn.bidar, 71732

Eli Zaretskii <eliz@gnu.org> writes:

>> According to
>> https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html,
>> 0700 permission is a part of XDG spec.
>
> I already explained that: we don't blindly follow any standards, and
> this particular issue is up to the calling Lisp program.  xdg.el has
> no business forcing permissions on the caller.

I do not ask to force the permissions.
I am asking to provide an API function that will create XDG dir with
appropriately assignment permissions. It will be up to the xdg.el caller
to use that API function.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 12:12               ` Ihor Radchenko
@ 2024-06-23 12:21                 ` Eli Zaretskii
  2024-06-23 12:28                   ` Ihor Radchenko
  0 siblings, 1 reply; 15+ messages in thread
From: Eli Zaretskii @ 2024-06-23 12:21 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: bjorn.bidar, 71732

> From: Ihor Radchenko <yantar92@posteo.net>
> Cc: 71732@debbugs.gnu.org, bjorn.bidar@thaodan.de
> Date: Sun, 23 Jun 2024 12:12:20 +0000
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> >> According to
> >> https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html,
> >> 0700 permission is a part of XDG spec.
> >
> > I already explained that: we don't blindly follow any standards, and
> > this particular issue is up to the calling Lisp program.  xdg.el has
> > no business forcing permissions on the caller.
> 
> I do not ask to force the permissions.
> I am asking to provide an API function that will create XDG dir with
> appropriately assignment permissions. It will be up to the xdg.el caller
> to use that API function.

Like I said earlier: this is a two-liner:

  (with-file-modes 0700
    (make-directory DIR t))

where the value 0700 is something the Lisp program should control.

I see no reason to provide an API for such simple code, let alone do
that in xdg.el.

And if you still don't agree, let's at least agree to disagree.
because this argument begins to revisit what was already said.





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 12:21                 ` Eli Zaretskii
@ 2024-06-23 12:28                   ` Ihor Radchenko
  2024-06-23 12:36                     ` Eli Zaretskii
  0 siblings, 1 reply; 15+ messages in thread
From: Ihor Radchenko @ 2024-06-23 12:28 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: bjorn.bidar, 71732

Eli Zaretskii <eliz@gnu.org> writes:

>> I am asking to provide an API function that will create XDG dir with
>> appropriately assignment permissions. It will be up to the xdg.el caller
>> to use that API function.
>
> Like I said earlier: this is a two-liner:
>
>   (with-file-modes 0700
>     (make-directory DIR t))
>
> where the value 0700 is something the Lisp program should control.

Yes, it is a two-liner, but 0700 requires familiarity with XDG.

> I see no reason to provide an API for such simple code, let alone do
> that in xdg.el.
>
> And if you still don't agree, let's at least agree to disagree.
> because this argument begins to revisit what was already said.

Ok. Then, feel free to close the feature request.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 12:28                   ` Ihor Radchenko
@ 2024-06-23 12:36                     ` Eli Zaretskii
  0 siblings, 0 replies; 15+ messages in thread
From: Eli Zaretskii @ 2024-06-23 12:36 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: bjorn.bidar, 71732-done

> From: Ihor Radchenko <yantar92@posteo.net>
> Cc: 71732@debbugs.gnu.org, bjorn.bidar@thaodan.de
> Date: Sun, 23 Jun 2024 12:28:48 +0000
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> >> I am asking to provide an API function that will create XDG dir with
> >> appropriately assignment permissions. It will be up to the xdg.el caller
> >> to use that API function.
> >
> > Like I said earlier: this is a two-liner:
> >
> >   (with-file-modes 0700
> >     (make-directory DIR t))
> >
> > where the value 0700 is something the Lisp program should control.
> 
> Yes, it is a two-liner, but 0700 requires familiarity with XDG.

No, it doesn't.  It requires the decision which modes to use, which is
independent of what XDG mandates.

> 
> > I see no reason to provide an API for such simple code, let alone do
> > that in xdg.el.
> >
> > And if you still don't agree, let's at least agree to disagree.
> > because this argument begins to revisit what was already said.
> 
> Ok. Then, feel free to close the feature request.

Done.





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-23 11:53             ` Eli Zaretskii
  2024-06-23 12:12               ` Ihor Radchenko
@ 2024-06-23 21:09               ` Björn Bidar via Bug reports for GNU Emacs, the Swiss army knife of text editors
       [not found]               ` <87tthjgyct.fsf@>
  2 siblings, 0 replies; 15+ messages in thread
From: Björn Bidar via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-06-23 21:09 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Ihor Radchenko, 71732

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Ihor Radchenko <yantar92@posteo.net>
>> Cc: 71732@debbugs.gnu.org, bjorn.bidar@thaodan.de
>> Date: Sun, 23 Jun 2024 11:42:47 +0000
>> 
>> Eli Zaretskii <eliz@gnu.org> writes:
>> 
>> >> Let me clarify: I did not mean creating a directory _under_ XDG
>> >> directory. I meant creating XDG directory itself - it is regulated by
>> >> XDG spec.
>> >
>> > Yes, I understood, and my response includes that part as well.
>> 
>> Then, I do not understand your
>> 
>>   >>> ...I disagree, mainly because the details are not part of XDG
>> 
>> According to
>> https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html,
>> 0700 permission is a part of XDG spec.
>
> I already explained that: we don't blindly follow any standards, and
> this particular issue is up to the calling Lisp program.  xdg.el has
> no business forcing permissions on the caller.

I guess the point was that the caller should follow XDG or the
respective standard on non-xdg platforms and to at least advice in
following those.
Emacs should integrate into the target platform if possible saving files
into the right directories should be something possible.

"Blindly" following xdg or the respective platform for generic modus
does not sound like a wrong idea to me good defaults are valuable.





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
       [not found]               ` <87tthjgyct.fsf@>
@ 2024-06-24 11:39                 ` Eli Zaretskii
  2024-06-24 11:58                   ` Björn Bidar via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 15+ messages in thread
From: Eli Zaretskii @ 2024-06-24 11:39 UTC (permalink / raw)
  To: Björn Bidar; +Cc: yantar92, 71732

> From: Björn Bidar <bjorn.bidar@thaodan.de>
> Cc: Ihor Radchenko <yantar92@posteo.net>,  71732@debbugs.gnu.org
> Date: Mon, 24 Jun 2024 00:09:38 +0300
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> >> From: Ihor Radchenko <yantar92@posteo.net>
> >> Cc: 71732@debbugs.gnu.org, bjorn.bidar@thaodan.de
> >> Date: Sun, 23 Jun 2024 11:42:47 +0000
> >> 
> >> Eli Zaretskii <eliz@gnu.org> writes:
> >> 
> >> According to
> >> https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html,
> >> 0700 permission is a part of XDG spec.
> >
> > I already explained that: we don't blindly follow any standards, and
> > this particular issue is up to the calling Lisp program.  xdg.el has
> > no business forcing permissions on the caller.
> 
> I guess the point was that the caller should follow XDG or the
> respective standard on non-xdg platforms and to at least advice in
> following those.
> Emacs should integrate into the target platform if possible saving files
> into the right directories should be something possible.
> 
> "Blindly" following xdg or the respective platform for generic modus
> does not sound like a wrong idea to me good defaults are valuable.

The purpose of xdg.el is to represent the XDG directories to Emacs.
It is then the job of the Lisp programs which use xdg.el to decide
whether they create a directory and which permissions to give it.





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

* bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist
  2024-06-24 11:39                 ` Eli Zaretskii
@ 2024-06-24 11:58                   ` Björn Bidar via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 0 replies; 15+ messages in thread
From: Björn Bidar via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2024-06-24 11:58 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: yantar92, 71732

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Björn Bidar <bjorn.bidar@thaodan.de>
>> Cc: Ihor Radchenko <yantar92@posteo.net>,  71732@debbugs.gnu.org
>> Date: Mon, 24 Jun 2024 00:09:38 +0300
>> 
>> Eli Zaretskii <eliz@gnu.org> writes:
>> 
>> >> From: Ihor Radchenko <yantar92@posteo.net>
>> >> Cc: 71732@debbugs.gnu.org, bjorn.bidar@thaodan.de
>> >> Date: Sun, 23 Jun 2024 11:42:47 +0000
>> >> 
>> >> Eli Zaretskii <eliz@gnu.org> writes:
>> >> 
>> >> According to
>> >> https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html,
>> >> 0700 permission is a part of XDG spec.
>> >
>> > I already explained that: we don't blindly follow any standards, and
>> > this particular issue is up to the calling Lisp program.  xdg.el has
>> > no business forcing permissions on the caller.
>> 
>> I guess the point was that the caller should follow XDG or the
>> respective standard on non-xdg platforms and to at least advice in
>> following those.
>> Emacs should integrate into the target platform if possible saving files
>> into the right directories should be something possible.
>> 
>> "Blindly" following xdg or the respective platform for generic modus
>> does not sound like a wrong idea to me good defaults are valuable.
>
> The purpose of xdg.el is to represent the XDG directories to Emacs.
> It is then the job of the Lisp programs which use xdg.el to decide
> whether they create a directory and which permissions to give it.

Maybe there should be a wrapper on top of xdg.el or the respective
platform wrapper then?





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

end of thread, other threads:[~2024-06-24 11:58 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-23  9:40 bug#71732: 30.0.50; [FR] xdg: provide an ability to create XDG directory, if it does not exist Ihor Radchenko
2024-06-23 10:12 ` Eli Zaretskii
2024-06-23 10:20   ` Ihor Radchenko
2024-06-23 10:24     ` Eli Zaretskii
2024-06-23 10:35       ` Ihor Radchenko
2024-06-23 11:29         ` Eli Zaretskii
2024-06-23 11:42           ` Ihor Radchenko
2024-06-23 11:53             ` Eli Zaretskii
2024-06-23 12:12               ` Ihor Radchenko
2024-06-23 12:21                 ` Eli Zaretskii
2024-06-23 12:28                   ` Ihor Radchenko
2024-06-23 12:36                     ` Eli Zaretskii
2024-06-23 21:09               ` Björn Bidar via Bug reports for GNU Emacs, the Swiss army knife of text editors
     [not found]               ` <87tthjgyct.fsf@>
2024-06-24 11:39                 ` Eli Zaretskii
2024-06-24 11:58                   ` Björn Bidar via Bug reports for GNU Emacs, the Swiss army knife of text editors

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