unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "João Távora" <joaotavora@gmail.com>
To: Philippe Vaucher <philippe.vaucher@gmail.com>
Cc: "Richard Stallman" <rms@gnu.org>,
	"Emacs developers" <emacs-devel@gnu.org>,
	"Stefan Monnier" <monnier@iro.umontreal.ca>,
	조성빈 <pcr910303@icloud.com>, "Dmitry Gutov" <dgutov@yandex.ru>,
	"Eli Zaretskii" <eliz@gnu.org>,
	"Drew Adams" <drew.adams@oracle.com>
Subject: Re: Imports / inclusion of s.el into Emacs
Date: Tue, 5 May 2020 11:14:44 +0100	[thread overview]
Message-ID: <CALDnm51HCa9aD78Gk0kSaSkmqD5jnef6rN6zM0PNYTtLJ6qFgA@mail.gmail.com> (raw)
In-Reply-To: <CAGK7Mr6yb1wuy1X+vuuLnpdr=M3BoQDfhaOqgOvGMN-9D3hYWg@mail.gmail.com>

On Tue, May 5, 2020 at 8:26 AM Philippe Vaucher
<philippe.vaucher@gmail.com> wrote:
>
> > Don't forget that completion can now use substring
> > and other kinds of matching.
>
> You understand that substring completion fails as soon as the term is
> too generic? e.g "string", "regexp" or "list", the list is just a lot
> of noise.

Have you actually tried Drew's suggestion? Starts an Emacs -Q and (setq
completion-styles '(flex)), or just M-x fido-mode.  Then C-h f for
"string".  You get a _little_ noise but it's not "a lot", by far.  And
the little noise you _do_ get from internal functions in other packages
is pretty easy to remove if you boost things by their mentions in the
manual.  In fact there's a patch at the end of this message.

> Also it doesn't quite work when the order is "reversed", e.g> C-h f
> "string TAB multibyte" would not return the desired function
> because it has to be "multibyte TAB string".

But that's never going to work either way, unless you alias all the
multi-word symbols to all their possible permutations.  You'll always
get a group of people that really expected it to be multibyte-string and
group of people that expect string-multibyte.  Oh, maybe we should all
be searching for "multibyte" instead!  Bam.  First 5 results:

multibyte-string-p
string-to-multibyte
string-as-multibyte
set-buffer-multibyte
multibyte-char-to-unibyte

To be clear.  I'm not presenting these examples to be antagonistic.  I'm
kind of sympathetic to your laziness to read the manuals, I'm lazy
myself, a reasonably good trait in programmers.  So I really do use
these tools (and work on them) to get around an imperfect world instead
of demanding that the world adjust to my rigid way of thinking.

That said, it is possible to devise a completion style that will take
two words and match them against candidates in different ways, maybe
even matching them against other properties besides their names.  I
haven't found it really useful, yet.  But it's not absurd to think about
that and writing a smart completion style for Emacs is a much better
(and more interesting) contribution to it than the renaming
sledgehammer.

Also sometimes, I'll read the manual and be really impressed by its
quality, too.

João

Anyway here's the "use the manual to bump up flex score"
patch.

diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index f6e2b236f3..1590b954b7 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -3191,6 +3191,12 @@ flex-score-match-tightness
 than the latter (which has two \"holes\" and three
 one-letter-long matches).")

+(defvar flex-score-adjustment nil
+  "If non nil a function of to adjust score of a flex match.
+Function is passed three arguments: MATCH, PATTERN and
+preliminary SCORE.  It should return a factor by which to
+multiply SCORE to reach the final value.")
+
 (defun completion-pcm--hilit-commonality (pattern completions)
   (when completions
     (let* ((re (completion-pcm--pattern->regex pattern 'group))
@@ -3279,9 +3285,16 @@ completion-pcm--hilit-commonality
                 'completions-first-difference
                 nil str))
            (unless (zerop (length str))
-             (put-text-property
-              0 1 'completion-score
-              (/ score-numerator (* len (1+ score-denominator)) 1.0) str)))
+             (let ((prelim
+                    (/ score-numerator (* len (1+ score-denominator)) 1.0)))
+               (put-text-property
+                0 1 'completion-score
+                (*
+                 (if (functionp flex-score-adjustment)
+                     (funcall flex-score-adjustment str pattern prelim)
+                   1)
+                 prelim)
+                str))))
          str)p
        completions))))


Then do this:

(setq flex-score-adjustment
      (lambda (m _p _s)
        (if (assoc m (info-lookup->completions 'symbol 'emacs-lisp-mode))
            4
          1)))

Then try C-h f string,  C-h f process



  reply	other threads:[~2020-05-05 10:14 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 [this message]
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
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=CALDnm51HCa9aD78Gk0kSaSkmqD5jnef6rN6zM0PNYTtLJ6qFgA@mail.gmail.com \
    --to=joaotavora@gmail.com \
    --cc=dgutov@yandex.ru \
    --cc=drew.adams@oracle.com \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=monnier@iro.umontreal.ca \
    --cc=pcr910303@icloud.com \
    --cc=philippe.vaucher@gmail.com \
    --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).