unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: arthur miller <arthur.miller@live.com>
To: "Dmitry Gutov" <dgutov@yandex.ru>, "João Távora" <joaotavora@gmail.com>
Cc: "Richard Stallman" <rms@gnu.org>,
	"joostkremers@fastmail.fm" <joostkremers@fastmail.fm>,
	emacs-devel <Emacs-devel@gnu.org>,
	"Alfred M. Szmidt" <ams@gnu.org>,
	"Stefan Monnier" <monnier@iro.umontreal.ca>,
	조성빈 <pcr910303@icloud.com>, "Eli Zaretskii" <eliz@gnu.org>,
	"Phillip Lord" <phillip.lord@russet.org.uk>
Subject: RE: dash.el [was: Re: Imports / inclusion of s.el into Emacs]
Date: Tue, 19 May 2020 22:17:09 +0000	[thread overview]
Message-ID: <VI1PR06MB4526A4DA5058858ACF9E016596B90@VI1PR06MB4526.eurprd06.prod.outlook.com> (raw)
In-Reply-To: <96bf0b6e-3559-ed02-5596-6a6642188309@yandex.ru>

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

Lately, you have talked so much about inclusion, Elpa, Melpa,  making Emacs easier, what new functionality would be useful, etc.

But nobody talks about excluding stuff. One of Emacs complexities is that there are so many different paths to accomplish same thing. Autocomplete - Company, Helm-Ivy, semantic-lsp, different spellcheckers, skeleton-yasnippet, etc. While I am all for democracy and freedom and Emacs extensible nature is perfect ground for growing diversity, it might not always be that too many choices equal freedom.

Maybe it could benefit if you clean up Emacs of some old cruft, and maybe replace some old for new. I mean be brave enough to make a choice and be vise enough to leave options for those who prefer differ path.

There will always be someone who disagrees with any choice of package you make and in general with any choice you made. If you wish to please everyone you will never please anyone. And whatever choices you make today will probably change in 40 years to come anyway, so it is not like change is written in stone forever.


Skickat från min Samsung Galaxy-smartphone.



-------- Originalmeddelande --------
Från: Dmitry Gutov <dgutov@yandex.ru>
Datum: 2020-05-19 17:25 (GMT+01:00)
Till: João Távora <joaotavora@gmail.com>
Kopia: Richard Stallman <rms@gnu.org>, joostkremers@fastmail.fm, emacs-devel <Emacs-devel@gnu.org>, "Alfred M. Szmidt" <ams@gnu.org>, Stefan Monnier <monnier@iro.umontreal.ca>, 조성빈 <pcr910303@icloud.com>, Eli Zaretskii <eliz@gnu.org>, Phillip Lord <phillip.lord@russet.org.uk>
Ämne: Re: dash.el [was: Re: Imports / inclusion of s.el into Emacs]

On 19.05.2020 17:11, João Távora wrote:
> On Sun, May 17, 2020 at 2:38 PM Dmitry Gutov <dgutov@yandex.ru> wrote:
>
>> I would like to point out, as an author of several packages, that in my
>> experience having a package in ELPA is _better_ than having it in the core.
>
> I know you like to develop on GitHub, and I'm not going to argue that:
> it is a completely separate discussion.

Indeed. That's why I was arguing about different things, rather than how
nice it is to be able to use a different hosting and bug tracker.

> I disagree on specific technical reasons that IMO don't get enough attention:

Below, you are arguing about two specific packages. I didn't say that
_no_ packages should be in the core, however. Just that for most of them
there is not much additional benefit from that.

But we can discuss these examples, too.

> 1. If Company were in the core, you could have major modes in
> the core or elsewhere setting up the desired completion strategy or
> strategies.  I.e. instead of  having central database of
> `company-backends` that packages like Eglot have to override to behave
> sanely, you could have a buffer-local  `company-backend` instead. You c
> ould continue to develop the specific eclim, clang, xcode, etc backends
> on GitHub, but you wouldn't "force" them on people that don't use them.

Major modes already define c-a-p-f, we have a frontend-agnostic API for
that. On top of it, however, Company provides finer-grained controls for
the users, which can't be decided by major modes.

I don't think 'M-x completion-at-point' can be realistically expected to
go away in any near future, so it doesn't seem like some tighter
integration with major modes is on the table (and I don't know what it
would look like anyway).

As for Eglot, it seems to successfully do what you want here with no
extra boilerplate. The only problem I see there is breaking some users'
existing configurations.

> 2. If Yasnippet were in the core, again, no need for the centralized
> database of snippets: major modes define their snippets.  Other tools
> can use the snippet-defining infrastructure without eating all that
> João-the-ten-years-ago newbie cruft. But even with yasnippet.el, it
> is possible (though not ideal: Stefan once convinced me to rewrite it
> which I did to 90% in a so-called snippet.el -- but there's still the
> 10% missing).

Yasnippet has been wildly successful without all that. It's the #1
standard snippet solution and format for Emacs. It's in GNU ELPA,
everybody can use and depend on it.

About "newbie cruft", how will that go away without somebody rewriting
yasnippet's code? And when they do, the result can sit in GNU ELPA as well.

Finally, the only snippet collections I still see maintained are being
done by third-party developers. If the major mode authors (BTW, how many
are actively maintaining major modes in the core?) wanted to also add
snippet collections, they'd have already done so.

And even if they do the new snippets will only reach the users once
every 2 years. (facepalm emoji)

> 3. If Eglot were in the core, again, no need for the centralized stuff
> currently living in eglot-server-programs.

Right. So CC Mode will define which completion server will be used by
Eglot? Really?

And suppose major mode authors even decide to take up that
responsibility, the LSP field moves much faster than Emacs these days.
Six month after Emacs 27 is released, another LSP server for C++ falls
out of fashion and stops being developed, and Emacs users will stay with
outdated settings until the next release. Or until their distro switches
to Emacs 28, actually, which can be another several years.

> Also, major modes in the
> core can affect Eglot's LSP interfaces via stronger coupling techniques,
> such as adding methods to generic functions.

You still never gave an example for that.

> Besides major modes,
> other tools than build on some LSP basics, such as an LSP-enabled
> spell checker could be built.

Yes it can. Anything stops it from being in ELPA?

> Also, I want to note, again, that even if Company, snippet.el and
> Eglot  were in the core, they could still _also_ be available
> for download via GNU ELPA.

I also noted that later.

>> The exception to that rule is more or less cases where the package is
>> not only added but also enabled by default.
>
> I've argued that that's not the only exception.

I'd argue if we call something "infrastructure", then it should either
be enabled by default, or used by other packages, or otherwise have a
necessary stronger coupling to other code. This is a fairly high barrier.


[-- Attachment #2: Type: text/html, Size: 8016 bytes --]

  parent reply	other threads:[~2020-05-19 22:17 UTC|newest]

Thread overview: 784+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <<CAGK7Mr6KHu_ab9c0b5RYvYp9+P91PFQ9emL3Fdy1436=VZ5gYA@mail.gmail.com>
     [not found] ` <<E1jUhoe-0005vE-KC@fencepost.gnu.org>
     [not found]   ` <<83368ivmym.fsf@gnu.org>
2020-05-02 16:49     ` Imports / inclusion of s.el into Emacs Drew Adams
2020-05-02 20:30       ` Philippe Vaucher
2020-05-02 20:50         ` Drew Adams
2020-05-02 21:11           ` Stefan Kangas
2020-05-02 21:17           ` Philippe Vaucher
2020-05-02 21:22           ` Dmitry Gutov
2020-05-03 14:30         ` Eli Zaretskii
2020-05-02 21:58       ` Stefan Monnier
2020-05-03  0:11         ` Drew Adams
2020-05-03  7:33           ` Philippe Vaucher
2020-05-03  8:05             ` tomas
2020-05-03  8:24               ` Philippe Vaucher
2020-05-03  8:56                 ` tomas
2020-05-03  9:14                   ` Philippe Vaucher
2020-05-03  9:36                     ` tomas
2020-05-04  3:12                   ` Richard Stallman
2020-05-04  7:54                     ` tomas
2020-05-04 17:12                       ` Drew Adams
2020-05-04 18:56                         ` tomas
2020-05-04 14:03                     ` Richard Stallman
2020-05-03 19:45             ` Drew Adams
2020-05-03 19:55               ` João Távora
2020-05-04  7:08               ` Philippe Vaucher
2020-05-04 17:19                 ` Drew Adams
2020-05-05  7:17                   ` Philippe Vaucher
2020-05-05 15:03                     ` Drew Adams
2020-05-05 15:18                       ` Eli Zaretskii
2020-05-06  4:46                       ` Richard Stallman
2020-05-06  4:55                         ` Drew Adams
2020-05-09  3:47                           ` Possible renamings of some string functions Richard Stallman
     [not found]   ` <<jwvwo5usda8.fsf-monnier+emacs@gnu.org>
     [not found]     ` <<831ro2tqqx.fsf@gnu.org>
     [not found]       ` <<4a1fd3f4-df92-c756-9874-4d07b54148ac@yandex.ru>
     [not found]         ` <<CALDnm50X097mYkC+p+JU11Uk2x0Y6LDbD_V9qPoGh7=aC-7HGg@mail.gmail.com>
     [not found]           ` <<3bd09dca-dcdc-7569-e5fb-f6b53397af9d@yandex.ru>
     [not found]             ` <<CALDnm53F16GY99-mNU-LJ6W9i0WV0zLuh0k8sSvC__-EgZfRNA@mail.gmail.com>
     [not found]               ` <<fca70a12-d0ee-1432-09ec-0006bf80b02a@yandex.ru>
     [not found]                 ` <<83bln6s5on.fsf@gnu.org>
     [not found]                   ` <<6d43996b-65ab-0bc6-9124-156520396910@yandex.ru>
     [not found]                     ` <<2152FEE0-987F-4816-9FB5-717EED2B47BE@icloud.com>
     [not found]                       ` <<83h7wyqiku.fsf@gnu.org>
     [not found]                         ` <<E1jVRPP-00060G-Od@fencepost.gnu.org>
     [not found]                           ` <<83imhbojx6.fsf@gnu.org>
2020-05-04 17:36                             ` Imports / inclusion of s.el into Emacs Drew Adams
2020-05-04 17:42                               ` João Távora
2020-05-05  7:25                               ` Philippe Vaucher
2020-05-05 10:14                                 ` João Távora
2020-05-05 11:57                                   ` Philippe Vaucher
2020-05-05 13:07                                     ` João Távora
2020-05-05 13:18                                       ` 조성빈
2020-05-05 13:40                                         ` João Távora
2020-05-05 13:55                                           ` 조성빈
2020-05-05 14:22                                             ` João Távora
2020-05-05 16:47                                               ` 조성빈
2020-05-05 21:48                                                 ` João Távora
2020-05-05 14:47                                       ` Philippe Vaucher
2020-05-05 16:20                                         ` Stefan Kangas
2020-05-05 17:29                                           ` Drew Adams
2020-05-06  4:45                                           ` Richard Stallman
2020-05-06 13:37                                             ` Stefan Monnier
2020-05-06 13:50                                               ` João Távora
2020-05-07  2:45                                                 ` Richard Stallman
2020-05-07 10:14                                                   ` João Távora
2020-05-08  2:49                                                     ` Richard Stallman
2020-05-09 18:37                                                       ` João Távora
2020-05-12  3:12                                                         ` Richard Stallman
2020-05-12 10:56                                                           ` João Távora
2020-05-12 19:14                                                             ` Adam Porter
2020-05-12 19:39                                                               ` João Távora
2020-05-12 21:03                                                                 ` Adam Porter
2020-05-12 21:18                                                                   ` João Távora
2020-05-13  4:05                                                                   ` Richard Stallman
2020-05-13  4:07                                                                 ` Richard Stallman
2020-05-18 22:31                                                                   ` João Távora
2020-05-24  3:52                                                                     ` Richard Stallman
2020-05-13  3:55                                                             ` Richard Stallman
2020-05-13  9:33                                                               ` João Távora
2020-05-13  3:55                                                             ` Richard Stallman
2020-05-06 14:04                                               ` Philippe Vaucher
2020-05-07  2:44                                                 ` Richard Stallman
2020-05-07  3:14                                                   ` Stefan Monnier
2020-05-07  7:23                                                     ` Philippe Vaucher
2020-05-07 13:42                                                       ` Stefan Monnier
2020-05-07 14:18                                                         ` Alfred M. Szmidt
2020-05-07 19:13                                                           ` Dmitry Gutov
2020-05-07 19:47                                                             ` Alfred M. Szmidt
2020-05-07 20:07                                                               ` Dmitry Gutov
2020-05-07 22:16                                                                 ` Alfred M. Szmidt
2020-05-08  2:47                                                         ` Richard Stallman
2020-05-08  3:38                                                           ` Stefan Monnier
2020-05-08  6:54                                                             ` ELPA policy (was: Imports / inclusion of s.el into Emacs) Eli Zaretskii
2020-05-08 14:57                                                               ` ELPA policy Stefan Monnier
2020-05-08 15:13                                                                 ` Eli Zaretskii
2020-05-08 23:16                                                                   ` Stefan Monnier
2020-05-09  6:22                                                                     ` Eli Zaretskii
2020-05-09  7:35                                                                       ` David Engster
2020-05-09  7:56                                                                         ` Eli Zaretskii
2020-05-09  8:16                                                                           ` David Engster
2020-05-09  8:27                                                                             ` Eli Zaretskii
2020-05-09  8:43                                                                               ` David Engster
2020-05-09  9:43                                                                                 ` Eli Zaretskii
2020-05-09 10:13                                                                                   ` David Engster
2020-05-09 10:24                                                                                     ` Eli Zaretskii
2020-05-09 10:29                                                                                       ` David Engster
2020-05-09 10:41                                                                                         ` Eli Zaretskii
2020-05-09 11:15                                                                                           ` David Engster
2020-05-10  2:29                                                                                         ` Richard Stallman
2020-05-09 11:09                                                                                       ` Alfred M. Szmidt
2020-05-09 15:06                                                                       ` Dmitry Gutov
2020-05-11 16:28                                                                         ` Eli Zaretskii
2020-05-12  3:16                                                                           ` Richard Stallman
2020-05-12 15:00                                                                             ` Eli Zaretskii
2020-05-08 22:34                                                               ` Phillip Lord
2020-05-09  7:21                                                               ` ELPA policy (was: Imports / inclusion of s.el into Emacs) Philippe Vaucher
2020-05-09  7:40                                                                 ` Philippe Vaucher
2020-05-09  7:48                                                                 ` Eli Zaretskii
2020-05-09 10:42                                                                   ` Philippe Vaucher
2020-05-09 11:11                                                                     ` Eli Zaretskii
2020-05-09 13:00                                                                       ` Philippe Vaucher
2020-05-10  2:29                                                                     ` Richard Stallman
2020-05-08  6:31                                                           ` Imports / inclusion of s.el into Emacs Alfred M. Szmidt
2020-05-08  8:16                                                             ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Joost Kremers
2020-05-08 10:41                                                               ` Alfred M. Szmidt
2020-05-08 17:53                                                                 ` Phillip Lord
2020-05-08 18:31                                                                   ` Alfred M. Szmidt
2020-05-08 22:23                                                                     ` Phillip Lord
2020-05-08 23:08                                                                       ` Stefan Kangas
2020-05-09  7:11                                                                       ` Alfred M. Szmidt
2020-05-10 11:48                                                                         ` Phillip Lord
2020-05-09  3:56                                                               ` Richard Stallman
2020-05-09  4:26                                                                 ` 조성빈
2020-05-09 10:57                                                                   ` Alfred M. Szmidt
2020-05-09 11:19                                                                     ` Eli Zaretskii
2020-05-09 11:29                                                                       ` octal escapes with rmail [was: Re: dash.el [was: Re: Imports / inclusion of s.el into Emacs]] Alfred M. Szmidt
2020-05-09 11:40                                                                         ` octal escapes with rmail Eli Zaretskii
2020-05-09 13:20                                                                           ` Alfred M. Szmidt
2020-05-09 12:53                                                                         ` octal escapes with rmail [was: Re: dash.el [was: Re: Imports / inclusion of s.el into Emacs]] Andreas Schwab
2020-05-09 13:07                                                                           ` Eli Zaretskii
2020-05-09 13:20                                                                             ` Alfred M. Szmidt
2020-05-09 13:30                                                                               ` Eli Zaretskii
2020-05-09 13:20                                                                           ` Alfred M. Szmidt
2020-05-09 13:36                                                                             ` Eli Zaretskii
2020-05-09 14:22                                                                         ` Stefan Monnier
2020-05-09 14:30                                                                           ` Lars Ingebrigtsen
2020-05-09 14:38                                                                           ` Andreas Schwab
2020-05-09 15:08                                                                           ` Eli Zaretskii
2020-05-09 15:14                                                                             ` Andreas Schwab
2020-05-09 19:37                                                                             ` Stefan Monnier
2020-05-09  7:38                                                                 ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Philippe Vaucher
2020-05-09  8:05                                                                   ` Eli Zaretskii
2020-05-09 10:56                                                                     ` Philippe Vaucher
2020-05-09 11:14                                                                       ` Eli Zaretskii
2020-05-09 12:13                                                                         ` Philippe Vaucher
2020-05-09 12:43                                                                           ` Eli Zaretskii
2020-05-09 12:52                                                                             ` Philippe Vaucher
2020-05-09 13:50                                                                       ` Richard Stallman
2020-05-09 14:11                                                                         ` Philippe Vaucher
2020-05-10  2:33                                                                           ` Richard Stallman
2020-05-10  7:23                                                                             ` Philippe Vaucher
2020-05-10  2:33                                                                           ` Richard Stallman
2020-05-10  2:44                                                                             ` Amin Bandali
2020-05-10  7:18                                                                               ` Philippe Vaucher
2020-05-11  2:41                                                                               ` Richard Stallman
2020-05-10 11:58                                                                         ` Phillip Lord
2020-05-11  2:38                                                                           ` Richard Stallman
2020-05-11  2:59                                                                             ` 조성빈
2020-05-11  5:49                                                                               ` Alfred M. Szmidt
2020-05-11 16:19                                                                                 ` Phillip Lord
2020-05-11 16:41                                                                                   ` Alfred M. Szmidt
2020-05-11 17:12                                                                                     ` 조성빈
2020-05-11 18:14                                                                                       ` Stefan Monnier
2020-05-11 19:28                                                                                       ` elpa part of emacs? [Re: dash.el [was: Re: Imports / inclusion of s.el into Emacs]] Alfred M. Szmidt
2020-05-11 20:05                                                                                         ` Stefan Monnier
2020-05-11 19:28                                                                                       ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Alfred M. Szmidt
2020-05-12  3:16                                                                                       ` Richard Stallman
2020-05-12  3:55                                                                                         ` Stefan Monnier
2020-05-12 17:01                                                                                           ` Eli Zaretskii
2020-05-12 17:30                                                                                             ` Phillip Lord
2020-05-12 17:46                                                                                               ` Eli Zaretskii
2020-05-12 18:03                                                                                                 ` Dmitry Gutov
2020-05-12 18:45                                                                                                   ` Eli Zaretskii
2020-05-13  4:04                                                                                                   ` Richard Stallman
2020-05-13 14:54                                                                                                     ` Dmitry Gutov
2020-05-12 18:51                                                                                                 ` Stefan Monnier
2020-05-12 21:38                                                                                                 ` Phillip Lord
2020-05-12 22:58                                                                                                   ` Yuan Fu
2020-05-13  8:52                                                                                                     ` Phillip Lord
2020-05-13 14:38                                                                                                   ` Eli Zaretskii
2020-05-13 15:11                                                                                                     ` Dmitry Gutov
2020-05-14  5:09                                                                                                       ` Richard Stallman
2020-05-14 12:22                                                                                                         ` Dmitry Gutov
2020-05-13  4:08                                                                                               ` Richard Stallman
2020-05-12 18:42                                                                                             ` Stefan Monnier
2020-05-12 19:07                                                                                               ` Eli Zaretskii
2020-05-12 19:50                                                                                                 ` Stefan Monnier
2020-05-13 16:20                                                                                                   ` Eli Zaretskii
2020-05-13 18:35                                                                                                     ` Stefan Monnier
2020-05-15  3:18                                                                                                     ` Richard Stallman
2020-05-13  4:07                                                                                                 ` Richard Stallman
2020-05-13 12:33                                                                                                   ` Stefan Monnier
2020-05-14  5:10                                                                                                     ` Richard Stallman
2020-05-13 14:54                                                                                                   ` Eli Zaretskii
2020-05-13  4:07                                                                                               ` Richard Stallman
2020-05-13  9:58                                                                                                 ` Phillip Lord
2020-05-13 11:48                                                                                                   ` Alfred M. Szmidt
2020-05-14  5:12                                                                                                   ` Richard Stallman
2020-05-14 12:25                                                                                                     ` Dmitry Gutov
2020-05-14 17:23                                                                                                       ` Drew Adams
2020-05-14 18:31                                                                                                         ` Dmitry Gutov
2020-05-12 18:43                                                                                             ` Stefan Monnier
2020-05-13  3:57                                                                                           ` Richard Stallman
2020-05-13 12:27                                                                                             ` Stefan Monnier
2020-05-14  5:10                                                                                               ` Richard Stallman
2020-05-14 13:44                                                                                                 ` Stefan Monnier
2020-05-14 15:28                                                                                                   ` Philippe Vaucher
2020-05-14 18:14                                                                                                     ` Eli Zaretskii
2020-05-14 18:32                                                                                                     ` Dmitry Gutov
2020-05-15  3:19                                                                                                       ` What is GNU ELPA? Richard Stallman
2020-05-15  3:46                                                                                                         ` Dmitry Gutov
2020-05-15  4:00                                                                                                           ` Jean-Christophe Helary
2020-05-15  4:21                                                                                                             ` Dmitry Gutov
2020-05-15  4:01                                                                                                           ` Stefan Monnier
2020-05-15  6:29                                                                                                           ` Alfred M. Szmidt
2020-05-15 15:08                                                                                                             ` Howard Melman
2020-05-15 20:43                                                                                                               ` Alfred M. Szmidt
2020-05-16  0:07                                                                                                               ` Dmitry Gutov
2020-05-18  3:46                                                                                                                 ` Richard Stallman
2020-05-18 10:57                                                                                                                   ` Dmitry Gutov
2020-05-18 13:01                                                                                                                     ` Alfred M. Szmidt
2020-05-18 13:21                                                                                                                       ` Dmitry Gutov
2020-05-18 12:54                                                                                                                   ` Arthur Miller
2020-05-19  3:57                                                                                                                     ` Richard Stallman
2020-05-19  3:58                                                                                                                     ` Richard Stallman
2020-05-16  4:16                                                                                                               ` Richard Stallman
2020-05-15  7:06                                                                                                           ` Eli Zaretskii
2020-05-15 12:25                                                                                                             ` Dmitry Gutov
2020-05-15 13:40                                                                                                               ` Eli Zaretskii
2020-05-15 13:59                                                                                                                 ` Dmitry Gutov
2020-05-15 15:11                                                                                                                   ` Stefan Monnier
2020-05-15 15:20                                                                                                                     ` Eli Zaretskii
2020-05-16  4:16                                                                                                                 ` Richard Stallman
2020-05-16  7:08                                                                                                                   ` Eli Zaretskii
2020-05-16  9:05                                                                                                                     ` Dmitry Gutov
2020-05-16  9:33                                                                                                                       ` Dmitry Gutov
2020-05-16  8:24                                                                                                                   ` Alfred M. Szmidt
2020-05-16 12:48                                                                                                                   ` Stefan Monnier
2020-05-16 14:43                                                                                                                     ` Eli Zaretskii
2020-05-16 20:24                                                                                                                       ` Dmitry Gutov
2020-05-17  2:52                                                                                                                       ` Richard Stallman
2020-05-16  4:18                                                                                                             ` Richard Stallman
2020-05-17  2:48                                                                                                           ` Richard Stallman
2020-05-17 12:59                                                                                                             ` Eli Zaretskii
2020-05-17  2:48                                                                                                           ` Richard Stallman
2020-05-17 18:05                                                                                                             ` Dmitry Gutov
2020-05-18  3:53                                                                                                               ` Richard Stallman
2020-05-18 10:49                                                                                                                 ` Dmitry Gutov
2020-05-19  3:59                                                                                                                   ` Richard Stallman
2020-05-17 14:49                                                                                                         ` Yoni Rabkin
2020-05-17 17:56                                                                                                           ` Dmitry Gutov
2020-05-18  2:42                                                                                                             ` Yoni Rabkin
2020-05-18 10:53                                                                                                               ` Dmitry Gutov
2020-05-18 13:01                                                                                                             ` Alfred M. Szmidt
2020-05-18  3:53                                                                                                           ` Richard Stallman
2020-05-18 10:54                                                                                                             ` Dmitry Gutov
2020-05-17  2:53                                                                                                   ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Richard Stallman
2020-05-17 13:01                                                                                                     ` Eli Zaretskii
2020-05-17 13:38                                                                                                       ` Dmitry Gutov
2020-05-17 14:24                                                                                                         ` Eli Zaretskii
2020-05-17 18:27                                                                                                           ` Dmitry Gutov
2020-05-17 18:38                                                                                                             ` Eli Zaretskii
2020-05-17 19:21                                                                                                               ` Dmitry Gutov
2020-05-17 19:30                                                                                                                 ` Eli Zaretskii
2020-05-17 19:47                                                                                                                   ` Dmitry Gutov
2020-05-17 18:52                                                                                                             ` "Write a new package" culture instead of patches? Stefan Kangas
2020-05-17 19:42                                                                                                               ` Dmitry Gutov
2020-05-17 22:14                                                                                                                 ` Yuan Fu
2020-05-17 22:44                                                                                                                   ` Arthur Miller
2020-05-17 23:13                                                                                                                   ` chad
2020-05-17 23:22                                                                                                                     ` Stefan Monnier
2020-05-18  1:31                                                                                                                       ` João Távora
2020-05-18  1:55                                                                                                                       ` Tim Cross
2020-05-19  3:51                                                                                                                       ` Richard Stallman
2020-05-19  3:51                                                                                                                   ` Richard Stallman
2020-05-19  4:33                                                                                                                     ` Stefan Kangas
2020-05-17 21:14                                                                                                               ` Alan Third
2020-05-17 22:02                                                                                                                 ` Arthur Miller
2020-05-18  7:58                                                                                                                   ` tomas
2020-05-18 12:08                                                                                                                     ` Arthur Miller
2020-05-18 12:26                                                                                                                       ` tomas
2020-05-18 23:07                                                                                                                         ` arthur miller
2020-05-19  7:27                                                                                                                           ` tomas
2020-05-17 21:51                                                                                                               ` Matthias Meulien
2020-05-18  3:49                                                                                                             ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Richard Stallman
2020-05-18 11:07                                                                                                               ` Dmitry Gutov
2020-05-19  3:59                                                                                                                 ` Splitting GNU ELPA Richard Stallman
2020-05-18 14:42                                                                                                               ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Eli Zaretskii
2020-05-19  3:55                                                                                                                 ` Splitting GNU ELPA Richard Stallman
2020-05-19  3:55                                                                                                                 ` Richard Stallman
2020-05-19 14:02                                                                                                                   ` Eli Zaretskii
2020-05-20  4:01                                                                                                                     ` Richard Stallman
2020-05-18  3:49                                                                                                         ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Richard Stallman
2020-05-18 11:24                                                                                                           ` Dmitry Gutov
2020-05-18 15:10                                                                                                             ` Eli Zaretskii
2020-05-18 16:13                                                                                                               ` Dmitry Gutov
2020-05-18 16:28                                                                                                                 ` Eli Zaretskii
2020-05-18 18:00                                                                                                                   ` Dmitry Gutov
2020-05-19 14:18                                                                                                                     ` João Távora
2020-05-19 14:21                                                                                                                       ` Dmitry Gutov
2020-05-19 15:14                                                                                                                       ` Stefan Kangas
2020-05-19 15:18                                                                                                                         ` Dmitry Gutov
2020-05-19 15:47                                                                                                                         ` Jean-Christophe Helary
2020-05-19  3:53                                                                                                                   ` Richard Stallman
2020-05-19 13:07                                                                                                                     ` Dmitry Gutov
2020-05-19 14:29                                                                                                                       ` João Távora
2020-05-19 14:46                                                                                                                         ` Dmitry Gutov
2020-05-19 15:20                                                                                                                       ` Stefan Kangas
2020-05-19 19:56                                                                                                                         ` Dmitry Gutov
2020-05-20  3:57                                                                                                                       ` Richard Stallman
2020-05-19  3:59                                                                                                             ` GNU ELPA package discoverability Richard Stallman
2020-05-19 14:30                                                                                                               ` Dmitry Gutov
2020-05-20  0:28                                                                                                               ` Tim Cross
2020-05-20 14:23                                                                                                                 ` Eli Zaretskii
2020-05-20 14:46                                                                                                                 ` Drew Adams
2020-05-21  3:42                                                                                                                 ` Richard Stallman
2020-05-21  6:03                                                                                                                   ` Tim Cross
2020-05-22  3:11                                                                                                                     ` Richard Stallman
2020-05-22  8:13                                                                                                                       ` Vasilij Schneidermann
2020-05-24  3:51                                                                                                                         ` Richard Stallman
2020-05-24 13:38                                                                                                                           ` Vasilij Schneidermann
2020-05-25  4:36                                                                                                                             ` Richard Stallman
2020-05-25  7:13                                                                                                                               ` Vasilij Schneidermann
2020-05-23  0:29                                                                                                                       ` Tim Cross
2020-05-24  3:53                                                                                                                         ` Richard Stallman
2020-05-24  9:15                                                                                                                           ` Tim Cross
2020-05-24 14:38                                                                                                                             ` Eli Zaretskii
2020-05-25  0:21                                                                                                                               ` Tim Cross
2020-05-25 15:20                                                                                                                                 ` Eli Zaretskii
2020-05-26  0:24                                                                                                                                   ` Tim Cross
2020-05-26 14:42                                                                                                                                     ` Eli Zaretskii
2020-05-27  1:06                                                                                                                                       ` Tim Cross
2020-05-27  2:40                                                                                                                                         ` Eli Zaretskii
2020-05-27  4:40                                                                                                                                           ` Tim Cross
2020-05-27 15:43                                                                                                                                             ` Eli Zaretskii
2020-05-27  5:39                                                                                                                                           ` Tim Cross
2020-05-27 15:45                                                                                                                                             ` Eli Zaretskii
2020-05-27 19:41                                                                                                                                               ` Tim Cross
2020-05-28  6:12                                                                                                                                                 ` Eli Zaretskii
2020-05-29  3:05                                                                                                                                                 ` Richard Stallman
2020-05-27  3:19                                                                                                                                         ` Richard Stallman
2020-05-27  3:52                                                                                                                                           ` Tim Cross
2020-05-27 15:39                                                                                                                                           ` Eli Zaretskii
2020-05-27 20:10                                                                                                                                             ` Tim Cross
2020-05-26  4:15                                                                                                                                   ` Richard Stallman
2020-05-26  7:34                                                                                                                                     ` Michael Albinus
2020-05-26 15:02                                                                                                                                     ` Eli Zaretskii
2020-05-25  4:36                                                                                                                             ` Richard Stallman
2020-05-25  5:37                                                                                                                               ` Tim Cross
2020-05-24  7:34                                                                                                               ` Bastien
2020-05-24 14:36                                                                                                                 ` Eli Zaretskii
2020-05-24 16:16                                                                                                                   ` Bastien
2020-05-24 16:38                                                                                                                     ` Eli Zaretskii
2020-05-24 16:44                                                                                                                       ` Yuri Khan
2020-05-24 17:01                                                                                                                       ` Bastien
2020-05-24 17:16                                                                                                                         ` Eli Zaretskii
2020-05-25  6:29                                                                                                                           ` Bastien
2020-05-25 14:37                                                                                                                             ` Eli Zaretskii
2020-05-25 14:42                                                                                                                               ` Dmitry Gutov
2020-05-25 15:09                                                                                                                                 ` Eli Zaretskii
2020-05-25 15:12                                                                                                                                   ` Dmitry Gutov
2020-05-25 16:06                                                                                                                                     ` Eli Zaretskii
2020-05-25 22:14                                                                                                                                       ` Dmitry Gutov
2020-05-27 20:33                                                                                                                                       ` Dmitry Gutov
2020-05-28  6:14                                                                                                                                         ` Eli Zaretskii
2020-05-25  2:57                                                                                                                         ` Sacha Chua
2020-05-25  7:51                                                                                                                           ` Bastien
2020-05-25 14:50                                                                                                                             ` Drew Adams
2020-05-26  2:44                                                                                                                             ` Sacha Chua
2020-06-01  9:26                                                                                                                               ` Bastien
2020-06-01 10:10                                                                                                                                 ` Stefan Kangas
2020-06-01 10:26                                                                                                                                   ` Bastien
2020-06-01 11:31                                                                                                                                     ` Stefan Kangas
2020-06-01 12:23                                                                                                                                       ` Bastien
2020-06-01 15:08                                                                                                                                 ` Eli Zaretskii
2020-06-01 15:18                                                                                                                                   ` Jean-Christophe Helary
2020-06-01 21:05                                                                                                                                     ` Corwin Brust
2020-06-01 23:25                                                                                                                                   ` Bastien
2020-06-02 17:21                                                                                                                                     ` Eli Zaretskii
2020-06-03  7:44                                                                                                                                       ` Bastien
2020-06-06  7:42                                                                                                                                         ` Eli Zaretskii
2020-06-07  9:18                                                                                                                                           ` Bastien
2020-06-13  7:26                                                                                                                                             ` Eli Zaretskii
2020-05-28  0:42                                                                                                                             ` Dmitry Gutov
2020-06-01  9:16                                                                                                                               ` Bastien
2020-06-01 15:07                                                                                                                                 ` Eli Zaretskii
2020-05-25 11:43                                                                                                                           ` Dmitry Gutov
2020-05-26  4:14                                                                                                                           ` Richard Stallman
2020-05-28  4:53                                                                                                                             ` Sacha Chua
2020-05-25  4:36                                                                                                                     ` Richard Stallman
2020-05-25  7:41                                                                                                                       ` Bastien
2020-05-25 20:48                                                                                                                         ` Alan Third
2020-05-25 21:54                                                                                                                           ` Dmitry Gutov
2020-06-01  9:12                                                                                                                           ` Bastien
2020-05-26  2:07                                                                                                                         ` Stefan Kangas
2020-05-27  3:06                                                                                                                           ` Richard Stallman
2020-05-27 20:34                                                                                                                             ` Dmitry Gutov
2020-05-29  3:00                                                                                                                               ` Richard Stallman
2020-05-29 13:54                                                                                                                                 ` Dmitry Gutov
2020-06-01  9:34                                                                                                                           ` Bastien
2020-05-25  4:36                                                                                                                 ` Richard Stallman
2020-05-19 14:11                                                                                                         ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] João Távora
2020-05-19 14:35                                                                                                           ` Eli Zaretskii
2020-05-19 14:54                                                                                                             ` Dmitry Gutov
2020-05-19 14:59                                                                                                           ` Dmitry Gutov
2020-05-19 17:28                                                                                                             ` João Távora
2020-05-19 19:38                                                                                                               ` Dmitry Gutov
2020-05-19 20:56                                                                                                                 ` João Távora
2020-05-20  0:09                                                                                                                   ` Dmitry Gutov
2020-05-20  0:59                                                                                                                     ` João Távora
2020-05-20  1:17                                                                                                                       ` Dmitry Gutov
2020-05-20  1:37                                                                                                                         ` João Távora
2020-05-20 14:40                                                                                                                           ` Dmitry Gutov
2020-05-20 16:41                                                                                                                             ` João Távora
2020-05-20 17:20                                                                                                                               ` Dmitry Gutov
2020-05-22 10:49                                                                                                                                 ` João Távora
2020-05-22 12:26                                                                                                                                   ` Dmitry Gutov
2020-05-22 14:32                                                                                                                                     ` João Távora
2020-05-22 18:39                                                                                                                                       ` Dmitry Gutov
2020-05-22 19:44                                                                                                                                         ` João Távora
2020-05-22 21:49                                                                                                                                           ` Dmitry Gutov
2020-05-23  0:08                                                                                                                                             ` João Távora
2020-05-23  0:24                                                                                                                                               ` Dmitry Gutov
2020-05-23  0:48                                                                                                                                                 ` João Távora
2020-05-23 18:47                                                                                                                                                   ` Dmitry Gutov
2020-05-23 21:27                                                                                                                                                     ` João Távora
2020-05-19 22:17                                                                                                             ` arthur miller [this message]
2020-05-21  3:42                                                                                                               ` Discarding superfluous old alternative packages Richard Stallman
2020-05-18  3:48                                                                                                       ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Richard Stallman
2020-05-18 14:39                                                                                                         ` Eli Zaretskii
2020-05-19  3:55                                                                                                           ` Splitting GNU ELPA Richard Stallman
2020-05-19  3:56                                                                                                           ` Richard Stallman
2020-05-19 14:06                                                                                                             ` Eli Zaretskii
2020-05-20  4:01                                                                                                               ` Richard Stallman
2020-05-20 14:40                                                                                                                 ` Eli Zaretskii
2020-05-11 18:11                                                                                     ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Stefan Monnier
2020-05-12  3:16                                                                                   ` Richard Stallman
2020-05-12  4:59                                                                                     ` Alfred M. Szmidt
2020-05-11  4:46                                                                             ` Yuri Khan
2020-05-11 15:05                                                                               ` Drew Adams
2020-05-12  3:18                                                                                 ` Richard Stallman
2020-05-11  2:38                                                                           ` Richard Stallman
2020-05-09 14:11                                                                     ` Stefan Monnier
2020-05-11 16:24                                                                       ` Eli Zaretskii
2020-05-11 17:19                                                                         ` 조성빈
2020-05-11 18:15                                                                           ` Eli Zaretskii
2020-05-09 14:18                                                                     ` Stefan Monnier
2020-05-09  8:35                                                                   ` Alfred M. Szmidt
2020-05-09 12:05                                                                     ` Philippe Vaucher
2020-05-09 13:20                                                                       ` Alfred M. Szmidt
2020-05-09 14:05                                                                         ` Philippe Vaucher
2020-05-09 17:35                                                                           ` discoveribility [Re: dash.el [was: Re: Imports / inclusion of s.el into Emacs]] Alfred M. Szmidt
2020-05-09 17:54                                                                             ` Yuri Khan
2020-05-09 21:36                                                                             ` Philippe Vaucher
2020-05-09 21:38                                                                               ` Philippe Vaucher
2020-05-09 23:21                                                                               ` Alfred M. Szmidt
2020-05-10  2:34                                                                           ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Richard Stallman
2020-05-09 15:30                                                                         ` Philippe Vaucher
2020-05-09 17:35                                                                           ` Alfred M. Szmidt
2020-05-09 22:01                                                                             ` Philippe Vaucher
2020-05-09 23:21                                                                               ` Alfred M. Szmidt
2020-05-10  0:02                                                                                 ` Joost Kremers
2020-05-10  0:46                                                                                   ` Alfred M. Szmidt
2020-05-10  0:52                                                                                   ` Dmitry Gutov
2020-05-11  2:37                                                                                   ` Richard Stallman
2020-05-11  9:08                                                                                     ` Joost Kremers
2020-05-11  9:27                                                                                       ` tomas
2020-05-11  9:46                                                                                         ` Philippe Vaucher
2020-05-11 10:07                                                                                           ` tomas
2020-05-11 12:48                                                                                             ` Philippe Vaucher
2020-05-11 17:03                                                                                           ` 조성빈
2020-05-11 20:45                                                                                         ` Joost Kremers
2020-05-11  9:44                                                                                       ` Philippe Vaucher
2020-05-10  2:33                                                                           ` Richard Stallman
2020-05-10  7:55                                                                             ` Philippe Vaucher
2020-05-10 15:26                                                                               ` Drew Adams
2020-05-10 16:56                                                                                 ` Philippe Vaucher
2020-05-10 18:37                                                                                   ` Alfred M. Szmidt
2020-05-11 17:48                                                                                     ` Phillip Lord
2020-05-10 19:31                                                                                   ` Stefan Monnier
2020-05-10 19:35                                                                                     ` Drew Adams
2020-05-11  2:38                                                                                 ` Richard Stallman
2020-05-11  2:40                                                                               ` Richard Stallman
2020-05-11 17:55                                                                                 ` Phillip Lord
2020-05-12  3:18                                                                                   ` Richard Stallman
2020-05-12  7:03                                                                                     ` Joost Kremers
2020-05-12 13:50                                                                                       ` Stefan Monnier
2020-05-12 17:21                                                                                         ` Phillip Lord
2020-05-12 18:45                                                                                           ` Stefan Monnier
2020-05-12 21:20                                                                                             ` Phillip Lord
2020-05-12 23:21                                                                                               ` Stefan Monnier
2020-05-13 21:03                                                                                                 ` Jonas Bernoulli
2020-05-14  7:26                                                                                                   ` Adrián Medraño Calvo
2020-05-14 16:30                                                                                                     ` Göktuğ Kayaalp
2020-05-15  3:24                                                                                                     ` Richard Stallman
2020-05-15 22:47                                                                                                       ` Phillip Lord
2020-05-18  3:47                                                                                                         ` Richard Stallman
2020-05-18  4:42                                                                                                           ` Stefan Monnier
2020-05-18 18:29                                                                                                             ` Adrián Medraño Calvo
2020-05-18 20:19                                                                                                               ` Stefan Monnier
2020-05-19 13:09                                                                                                                 ` Lars Ingebrigtsen
2020-05-22 13:21                                                                                                                   ` Bastien
2020-05-18 23:46                                                                                                               ` Joost Kremers
2020-05-20  3:54                                                                                                                 ` Richard Stallman
2020-05-18 23:24                                                                                                             ` Göktuğ Kayaalp
2020-05-19  3:34                                                                                                               ` Stefan Monnier
2020-05-19  7:37                                                                                                                 ` tomas
2020-05-19 14:26                                                                                                                 ` Göktuğ Kayaalp
2020-05-19 15:52                                                                                                                   ` Stefan Monnier
2020-05-20 14:04                                                                                                                     ` Göktuğ Kayaalp
2020-05-20 15:01                                                                                                                       ` Eli Zaretskii
2020-05-18 14:40                                                                                                           ` Eli Zaretskii
2020-05-16 18:51                                                                                                       ` Göktuğ Kayaalp
2020-05-13  4:04                                                                                           ` Richard Stallman
2020-05-12 22:00                                                                                         ` Joost Kremers
2020-05-12 23:22                                                                                           ` Stefan Monnier
2020-05-13  6:23                                                                                             ` Joost Kremers
2020-05-13  4:00                                                                                       ` Richard Stallman
2020-05-13  7:41                                                                                         ` literal functions [was: Re: dash.el] Joost Kremers
2020-05-13  8:58                                                                                         ` dash.el [was: Re: Imports / inclusion of s.el into Emacs] Phillip Lord
2020-05-14  5:13                                                                                           ` Richard Stallman
2020-05-16  4:22                                                                                           ` Richard Stallman
2020-05-16  6:01                                                                                             ` Joost Kremers
2020-05-17  2:56                                                                                               ` Richard Stallman
2020-05-10 14:01                                                                             ` Eli Zaretskii
2020-05-09 17:49                                                                         ` Drew Adams
2020-05-09 13:59                                                                     ` Stefan Monnier
2020-05-10  2:34                                                                   ` Richard Stallman
2020-05-07 19:29                                                   ` Imports / inclusion of s.el into Emacs Dmitry Gutov
2020-05-07  2:45                                               ` Richard Stallman
2020-05-07  3:29                                                 ` Stefan Monnier
2020-05-07 15:29                                                 ` 조성빈
2020-05-07 18:22                                                   ` Stefan Monnier
2020-05-07 19:03                                                     ` Philippe Vaucher
2020-05-07 19:10                                                       ` Dmitry Gutov
2020-05-09  3:50                                                         ` Richard Stallman
2020-05-09  4:28                                                           ` 조성빈
2020-05-09 15:15                                                           ` Dmitry Gutov
2020-05-10  2:31                                                             ` Richard Stallman
2020-05-10  3:27                                                               ` Dmitry Gutov
2020-05-11  2:37                                                                 ` Richard Stallman
2020-05-11  2:54                                                                   ` Dmitry Gutov
2020-05-11 15:02                                                                     ` Eli Zaretskii
2020-05-11 16:24                                                                       ` Dmitry Gutov
2020-05-11 16:55                                                                         ` Eli Zaretskii
2020-05-11 17:01                                                                           ` Dmitry Gutov
2020-05-11 17:18                                                                             ` Eli Zaretskii
2020-06-03  4:24                                                                     ` Richard Stallman
2020-06-03 12:15                                                                       ` Dmitry Gutov
2020-06-04  3:31                                                                         ` Richard Stallman
2020-05-07  2:43                                         ` Richard Stallman
2020-05-05 12:22                                   ` Dmitry Gutov
2020-05-05 12:53                                     ` João Távora
2020-05-05 13:03                                       ` Dmitry Gutov
2020-05-05 13:09                                         ` João Távora
2020-05-05 13:10                                     ` 조성빈
2020-05-05 17:23                                     ` Stefan Monnier
2020-05-05 18:02                                       ` João Távora
2020-05-05 18:39                                         ` Stefan Monnier
2020-05-05 18:56                                           ` João Távora
2020-05-05 19:01                                             ` Dmitry Gutov
2020-05-05 19:04                                               ` João Távora
2020-05-05 19:06                                                 ` Dmitry Gutov
2020-05-05 19:09                                                   ` João Távora
2020-05-05 19:29                                             ` Stefan Monnier
2020-05-05 19:41                                               ` João Távora
2020-05-05 21:25                                                 ` Stefan Monnier
2020-05-05 19:44                                               ` Alfred M. Szmidt
2020-05-06  2:22                                               ` Eli Zaretskii
2020-05-06  2:44                                                 ` Stefan Monnier
2020-05-06 13:50                                                   ` Eli Zaretskii
2020-05-06 14:03                                                     ` Stefan Monnier
2020-05-06 14:09                                                       ` Eli Zaretskii
2020-05-06 14:12                                                         ` João Távora
2020-05-06 15:48                                                         ` Stefan Monnier
2020-05-06 16:41                                                           ` Alan Mackenzie
2020-05-06 17:49                                                             ` Stefan Monnier
2020-05-06 19:09                                                               ` Drew Adams
2020-05-06 16:46                                                           ` Eli Zaretskii
2020-05-05 19:58                                             ` Philippe Vaucher
2020-05-05 20:42                                               ` João Távora
2020-05-05 21:13                                                 ` Dmitry Gutov
2020-05-05 21:16                                                   ` João Távora
2020-05-06  9:20                                                 ` Philippe Vaucher
2020-05-06 19:21                                                   ` João Távora
2020-05-06 21:42                                                     ` Drew Adams
2020-05-06 21:59                                                       ` João Távora
2020-05-07  2:41                                           ` Richard Stallman
2020-05-05 16:42                                 ` Drew Adams
2020-05-06  4:48                                 ` Richard Stallman
2020-05-01 14:56 Philippe Vaucher
2020-05-01 15:11 ` Eli Zaretskii
2020-05-01 15:56   ` Philippe Vaucher
2020-05-01 16:01     ` Eli Zaretskii
2020-05-01 16:40 ` Stefan Kangas
2020-05-01 16:56   ` Philippe Vaucher
2020-05-01 17:16 ` Dmitry Gutov
2020-05-01 17:28   ` João Távora
2020-05-01 18:09     ` Stefan Monnier
2020-05-01 18:16       ` Dmitry Gutov
2020-05-01 18:19         ` Philippe Vaucher
2020-05-01 18:30           ` Dmitry Gutov
2020-05-01 18:44             ` Philippe Vaucher
2020-05-01 20:17               ` Joost Kremers
2020-05-01 18:32         ` Stefan Monnier
2020-05-01 18:48           ` Philippe Vaucher
2020-05-01 18:48           ` Dmitry Gutov
2020-05-03  3:40           ` Richard Stallman
2020-05-01 22:53         ` Yuan Fu
2020-05-01 23:00           ` Yuan Fu
2020-05-01 23:25             ` Rename regex functions to use prefix re- Stefan Kangas
2020-05-05 21:56               ` Phillip Lord
2020-05-02  8:13             ` Imports / inclusion of s.el into Emacs Philippe Vaucher
2020-05-02 10:45               ` Stefan Kangas
2020-05-03  3:39             ` Richard Stallman
2020-05-03  4:12               ` Stefan Monnier
2020-05-03  7:50               ` Philippe Vaucher
2020-05-04  3:09                 ` Richard Stallman
2020-05-03 12:00               ` Richard Stallman
2020-05-01 23:23       ` João Távora
2020-05-01 23:32         ` Stefan Kangas
2020-05-01 23:36           ` João Távora
2020-05-02  0:07             ` Stefan Kangas
2020-05-03  3:38               ` Richard Stallman
2020-05-05 22:35                 ` Stefan Kangas
2020-05-05 22:46                   ` Dmitry Gutov
2020-05-06  9:14                   ` Philippe Vaucher
2020-05-06 10:51                     ` Phillip Lord
2020-05-06 11:21                       ` Stefan Kangas
2020-05-06 13:43                       ` Stefan Monnier
2020-05-02  0:09             ` Dmitry Gutov
2020-05-03  3:39             ` Richard Stallman
2020-05-02 12:59         ` Stefan Monnier
2020-05-02 13:08           ` João Távora
2020-05-02 16:56             ` Stefan Monnier
2020-05-03  6:54             ` Lars Ingebrigtsen
2020-05-03  3:39         ` Richard Stallman
2020-05-05 22:05         ` Phillip Lord
2020-05-05 22:12           ` João Távora
2020-05-05 23:01             ` Stefan Monnier
2020-05-01 17:36   ` Philippe Vaucher
2020-05-01 18:36     ` Dmitry Gutov
2020-05-01 18:57       ` Stefan Monnier
2020-05-01 18:05   ` Philippe Vaucher
2020-05-01 18:47     ` Dmitry Gutov
2020-05-01 18:56       ` Philippe Vaucher
2020-05-03  3:40     ` Richard Stallman
2020-05-03  7:56       ` Philippe Vaucher
2020-05-04  3:13         ` Richard Stallman
2020-05-06  9:37       ` Phillip Lord
2020-05-02  2:23 ` Richard Stallman
2020-05-02  7:02   ` Eli Zaretskii
2020-05-02 13:03   ` Stefan Monnier
2020-05-02 13:23     ` Eli Zaretskii
2020-05-02 13:29       ` Dmitry Gutov
2020-05-02 13:34         ` João Távora
2020-05-02 13:42           ` tomas
2020-05-02 14:28             ` João Távora
2020-05-02 17:03             ` Stefan Monnier
2020-05-02 13:47           ` Dmitry Gutov
2020-05-02 14:18             ` João Távora
2020-05-02 15:03               ` Dmitry Gutov
2020-05-02 15:10                 ` João Távora
2020-05-02 15:48                   ` Dmitry Gutov
2020-05-02 16:04                     ` João Távora
2020-05-03  1:16                       ` Dmitry Gutov
2020-05-03  1:56                         ` Drew Adams
2020-05-04  0:12                   ` chad
2020-05-04 14:16                     ` Eli Zaretskii
2020-05-04 15:32                       ` tomas
2020-05-04 17:23                       ` Dmitry Gutov
2020-05-04 17:37                         ` Eli Zaretskii
2020-05-04 17:52                           ` Dmitry Gutov
2020-05-04 18:11                             ` Eli Zaretskii
2020-05-04 18:44                               ` Dmitry Gutov
2020-05-04 18:57                                 ` Eli Zaretskii
2020-05-04 19:22                                   ` Dmitry Gutov
2020-05-05  2:53                         ` Richard Stallman
2020-05-05 12:51                           ` Dmitry Gutov
2020-05-05  0:00                       ` chad
2020-05-05  2:50                     ` Richard Stallman
2020-05-02 15:43                 ` Eli Zaretskii
2020-05-02 15:47                   ` Philippe Vaucher
2020-05-02 16:06                     ` Eli Zaretskii
2020-05-02 16:49                     ` Drew Adams
2020-05-02 16:05                   ` Dmitry Gutov
2020-05-02 17:07                   ` Stefan Monnier
2020-05-02 18:25                   ` Dmitry Gutov
2020-05-02 18:35                     ` Eli Zaretskii
2020-05-02 21:14                       ` Dmitry Gutov
2020-05-02 18:40                     ` 조성빈
2020-05-02 18:48                       ` Eli Zaretskii
2020-05-02 18:53                         ` 조성빈
2020-05-02 19:13                           ` Eli Zaretskii
2020-05-02 19:19                             ` 조성빈
2020-05-04  3:04                         ` Richard Stallman
2020-05-04 14:26                           ` Eli Zaretskii
2020-05-02 21:09                       ` Stefan Monnier
2020-05-02 21:05                     ` Stefan Monnier
2020-05-02 21:19                       ` Dmitry Gutov
2020-05-02 22:03                       ` Drew Adams
2020-05-02 22:21                         ` Stefan Monnier
2020-05-02 23:10                           ` Drew Adams
2020-05-03  8:07                             ` tomas
2020-05-02 22:18                       ` Stefan Monnier
2020-05-03  3:42                   ` Richard Stallman
2020-05-03  3:43                 ` Richard Stallman
2020-05-03 12:51                   ` Dmitry Gutov
2020-05-04  3:10                     ` Richard Stallman
2020-05-02 18:07             ` Drew Adams
2020-05-02 13:51           ` Philippe Vaucher
2020-05-02 13:55         ` Eli Zaretskii
2020-05-02 14:05           ` Philippe Vaucher
2020-05-02 14:18             ` Eli Zaretskii
2020-05-02 14:36               ` 조성빈
2020-05-02 15:32                 ` Eli Zaretskii
2020-05-02 14:42               ` Philippe Vaucher
2020-05-02 14:55                 ` João Távora
2020-05-02 15:20                   ` Philippe Vaucher
2020-05-02 15:59                     ` Eli Zaretskii
2020-05-02 16:31                       ` Philippe Vaucher
2020-05-02 16:40                         ` Eli Zaretskii
2020-05-02 16:53                           ` Dmitry Gutov
2020-05-02 17:00                             ` Dmitry Gutov
2020-05-02 19:54                           ` Philippe Vaucher
2020-05-03 14:13                             ` Eli Zaretskii
2020-05-03 14:18                               ` Philippe Vaucher
2020-05-03 16:12                                 ` Eli Zaretskii
2020-05-03 16:32                                   ` Yuri Khan
2020-05-03 16:51                                     ` Eli Zaretskii
2020-05-04  3:09                                     ` Richard Stallman
2020-05-04  7:35                                       ` Jean-Christophe Helary
2020-05-04 14:35                                         ` Eli Zaretskii
2020-05-05  2:52                                           ` Richard Stallman
2020-05-05  7:10                                             ` Lars Ingebrigtsen
2020-05-05  2:50                                         ` Richard Stallman
2020-05-04 14:29                                       ` Eli Zaretskii
2020-05-05  2:52                                         ` Richard Stallman
2020-05-04  7:47                               ` Jean-Christophe Helary
2020-05-04 14:36                                 ` Eli Zaretskii
2020-05-04 15:07                                   ` 조성빈
2020-05-05  1:37                                   ` Jean-Christophe Helary
2020-05-05  2:33                                     ` Eli Zaretskii
2020-05-04  3:07                             ` Richard Stallman
2020-05-03  7:57                           ` Jean-Christophe Helary
2020-05-03  8:10                             ` Philippe Vaucher
2020-05-03  8:20                               ` Jean-Christophe Helary
2020-05-03  8:28                                 ` Philippe Vaucher
2020-05-03  8:50                                   ` Jean-Christophe Helary
2020-05-03  8:57                                     ` Philippe Vaucher
2020-05-02 18:01                       ` 조성빈
2020-05-02 18:24                         ` Eli Zaretskii
2020-05-02 18:50                           ` Arthur Miller
2020-05-04  3:04                             ` Richard Stallman
2020-05-02 21:02                           ` Stefan Monnier
2020-05-02 21:15                             ` João Távora
2020-05-03  3:42                       ` Richard Stallman
2020-05-03  3:43                     ` Richard Stallman
2020-05-02 17:01                   ` Stefan Monnier
2020-05-03  6:52     ` Lars Ingebrigtsen
2020-05-03  7:40       ` Philippe Vaucher
2020-05-03  8:15         ` Lars Ingebrigtsen
2020-05-04  3:13           ` Richard Stallman
2020-05-03  8:17         ` Lars Ingebrigtsen
2020-05-03  8:21           ` Jean-Christophe Helary
2020-05-03  9:39             ` Lars Ingebrigtsen
2020-05-03  9:43               ` Philippe Vaucher
2020-05-03  9:48               ` Jean-Christophe Helary
2020-05-05  7:59                 ` Lars Ingebrigtsen
2020-05-05  8:03                   ` Jean-Christophe Helary
2020-05-05 16:54                     ` Drew Adams
2020-05-03  9:32         ` João Távora
2020-05-03 10:06           ` Philippe Vaucher
2020-05-03 10:20             ` Philippe Vaucher
2020-05-03 10:55             ` Stefan Kangas
2020-05-03 11:56               ` João Távora
2020-05-03 14:51                 ` 조성빈
2020-05-03 17:36                   ` João Távora
2020-05-03 18:12                     ` 조성빈
2020-05-03 19:41                       ` João Távora
2020-05-03 13:31               ` Philippe Vaucher
2020-05-03 12:21             ` João Távora
2020-05-03 13:47               ` Philippe Vaucher
2020-05-03 14:13                 ` João Távora
2020-05-03 14:27                   ` Philippe Vaucher
2020-05-03 14:48                     ` João Távora
2020-05-04  3:10                   ` Richard Stallman
2020-05-04  3:10                 ` Richard Stallman
2020-05-04  3:12             ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=VI1PR06MB4526A4DA5058858ACF9E016596B90@VI1PR06MB4526.eurprd06.prod.outlook.com \
    --to=arthur.miller@live.com \
    --cc=Emacs-devel@gnu.org \
    --cc=ams@gnu.org \
    --cc=dgutov@yandex.ru \
    --cc=eliz@gnu.org \
    --cc=joaotavora@gmail.com \
    --cc=joostkremers@fastmail.fm \
    --cc=monnier@iro.umontreal.ca \
    --cc=pcr910303@icloud.com \
    --cc=phillip.lord@russet.org.uk \
    --cc=rms@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).