unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Drew Adams <drew.adams@oracle.com>
To: "rms@gnu.org" <rms@gnu.org>, "emacs-devel@gnu.org" <emacs-devel@gnu.org>
Subject: RE: [External] : New key binding syntax
Date: Mon, 8 Nov 2021 23:50:46 +0000	[thread overview]
Message-ID: <SJ0PR10MB54889900EB00FCB8B54A3FFBF3919@SJ0PR10MB5488.namprd10.prod.outlook.com> (raw)
In-Reply-To: <E1mhksL-0003ZX-LS@fencepost.gnu.org>

>> Have a look at the kbd-valid-p doc string on the 
>> current trunk for a definition.
> 
> I've included that text below, because now is the time
> for people to look at and comment on it.
> 
> Should the syntax Emacs adopts for the next 20 years be
> this one?  This one with some changes?  Any other proposal?
> 
> If we use this syntax, the text we use to define it in
> the Emacs Lisp Ref Manual should cover valid cases not
> mentioned in this text.  We don't use them in normal
> Emacs bindings, but they are valid so they should be
> documented.


You didn't get much of a response to your request
for opinions about this.  FWIW, here's my opinion
on the key-sequence description syntax we should use.

___

This is about use cases where we now use `kbd'.  This
is typically about using (kbd ...) as input to things
like `define-key'.

This is not particularly about how some explanatory
text in a manual, for example, can refer to things like
inputs in general or about message outputs.  For that,
I think the currently used representation is fine.
That can of course include the use of key descriptions,
such as are accepted by `kbd'.  It also includes text
such as `M-x some-command'.

And it even includes informal text such as "Type M-x
foobar RET".  (Notice that "foobar" here informally
stands for typing the sequence "f SPC o SPC o SPC b SPC
a SPC r", but "RET" stands for hitting just that key,
not for hitting the keys "R", "E", and "T".)

I say this deciding about key-description syntax is not
about that, in particular, to distinguish the use of
whitespace.  Informal description of user input and
output messages is something different from, and more
inclusive and forgiving than, the precise syntax of
key-sequence descriptions.

For simplicity I'll generally refer to the
key-description syntax I prefer as "kbd" syntax,
because it's essentially what `kbd' accepts.

Some (Stefan K in particular) have pointed out that the
current implementation of `kbd' accepts some
seldom-used or outlier syntax possibilities, and `kbd'
might have some bugs or undesirable features.

I don't include those in the syntax I prefer.  If we
ever get to that point, that is, if we ever get general
agreement on the "normal", syntax that `kbd' accepts as
what we want for the future, then at that point we can
discuss any of the odd or arcane possibilities that
`kbd' also accepts.

___


1. Whitespace should be allowed arbitrarily for
separation in the key-description syntax.  I believe
this is already the case (at least for space chars),
but in any case it should be.

You should be able to use "a    b  c", or "a b
c" (including the newline), or "  a b  c   ", or any
other syntax where any number of SPC, TAB, and newline
chars separate keys in a key sequence.  (No, I wouldn't
allow unusual Unicode whitespace chars - no need; these
are just separators, for our convenience.)

IOW, I don't agree with Lars's preference of allowing
only a single SPC char as separator; I agree with John
Yates here.  And I'd go beyond SPC to allow newline and
TAB, but that's not important - just a nice-to-have /
why-not.

2. A space char in a key sequence should be represented
as SPC in a key description, not as a literal space
char.  I see _no_ advantage to having space chars
represent themselves literally, as opposed to using the
name of the key that's associated with, and by default
inserts, that char: (kbd "SPC").

Same for newline (C-j) and TAB (C-i) keys. To represent
a TAB key, use (kbd "TAB") or (kbd "C-i"); to represent
a newline, use C-j: (kbd "C-j").  We'd just be asking
for trouble, and confusing users _more_ (not less), if
we started using " " instead of "SPC" - without gaining
anything.

(And yes, the key `<tab>' is different from the key
`TAB', though sometimes the one gets translated to the
other for binding lookup.)

(Whether and how weallow unicode, octal, or other
representations for chars in key descriptions is
another question.  I don't have an answer/preference
for that now, but maybe it should be discussed at some
point.)

3. Personally, I don't feel a need to allow the
argument to `kbd' to be used on its own (e.g., passed
to `define-key" or its replacement), in place of using
(kbd ARG) - let alone feel a need to prescribe that.

I don't see that as helping anyone.  Just as for using
" " instead of "SPC", I expect that doing that just
asks for trouble and sows confusion, without any gain.
This is just a guess; I could maybe be convinced
otherwise, but so far I haven't seen any good argument.

4. I agree that if `kbd' has some anomalies, as Stefan
K pointed out, we can remove them from any new,
replacement syntax we define.

I don't care much whether we use a new function (e.g.
`key') or we just change `kbd' itself, purifying it of
anomalies.  The former is maybe easier and cleaner, to
let `kbd' continue to go its merry way for backward
compatibility.

5. I don't think we should impose a single ordering of
modifiers.  But I do think we should have a convention
that specifies a preferred order.

IOW, let's separate what you _can_ use (any modifier
order) from what we recommend you _do_ use.  For the
recommended order, let's stick with what we've already
recommended - which should be the same order that Emacs
itself uses in its Help output.  E.g., `C-M-', not
`M-C-'.  But again, this isn't very important - it's
just a convention that makes things more consistent,
hence easier to read and digest.

6. The correspondence between the syntax you pass to
`kbd' and the syntax that Emacs Help uses is very
important, IMO.  Emacs and users (including users of
Elisp) should talk about keys using the same syntax,
as much as possible.

7. I'm in favor of letting `kbd' and Help descriptions
drop the use of angle brackets altogether.  I've done
that, and I haven't encountered any problems or
contradictions from doing it.  `kbd' (or `key' or
whatever) can and should accept both angle-bracketed
and "naked" syntax (no brackets), with no difference in
behavior.  Again, I've been doing this for decades now.

FWIW (but I don't care how Emacs itself does it), I use
function `naked' instead of function `kbd', and
`naked-key-description' instead of `key-description'.
Emacs itself wouldn't need two sets of functions.

Function `naked' indifferently accepts either naked or
angle-bracketed syntax as input.

(To reproduce Emacs bug #12535 faithfully (!) it also
accepts an optional Boolean arg ANGLES, which forces
the bugged behavior, e.g., makes the input "M-<TAB>"
output [M-TAB] instead of the correct output
[134217737].)

Other NaKeD functions likewise accept an optional
ANGLES arg.  With non-nil arg, `naked-key-description'
does just what `key-description' does (otherwise it
outputs naked key descriptions).  Likewise
`naked-read-kbd-macro' and `naked-edmacro-parse-keys':
an optional arg gives the current bracketed Emacs
behavior.

But my point here is that Emacs itself does not need
angle-bracket syntax - at all.  (Eli claims otherwise,
but I've seen no counter-example so far.)  That noise
was introduced gratuitously in Emacs 21, I believe.  

`C-x toto' unequivocally means the same thing as `C-x
<toto>'.  And the few ASCII control chars with names
that we accept (RET, SPC, ESC, etc.) don't invalidate
this proposition.  (And yes, bug #12535 is a bug.)

#7 here is apparently heretical, and I don't expect it
to be accepted.  But I feel obliged to mention it once
more, since the question has been raised of the syntax
we want for key descriptions.  There really is no need
for angle brackets.  Really.  So Occam says drop 'em.
(Or show a real case where they're actually needed.)

Description:
https://www.emacswiki.org/emacs/NaKeD

Code:
 https://www.emacswiki.org/emacs/download/naked.el

___

As for the new syntax proposal that RMS asked about,
from the `kbd-valid-p' doc string: seems like confusion
of use and mention.

(I don't know what `kbd-valid-p' is really for, but I'm
guessing it's for testing the validity of a key
description, e.g. what `kbd' or its replacement should
accept as a valid arg, i.e., as an arg that validly
describes a possible key sequence.)

It confuses statements of what a key sequence is with
what the syntax of a key(-sequence) description is,
i.e., what constitutes a "valid key sequence" (which is
a sequence of keys) versus what constitutes a valid
key-sequence description for use in code and Help (e.g.
as arg to `kbd').

It's OK in the doc to talk about the "key sequence `C-x
C-f'", because there we're _using_ the term "key
sequence" to talk about a key sequence, which itself is
represented by the description `C-x C-f'.  We're not
talking about the text/syntax "C-x C-f" there; we're
talking about the sequence of keys that that
description represents.

But when we're talking about defining/specifying valid
syntax for key descriptions, we shouldn't say we're
talking about defining which _key sequences_ are valid.

\"S o m\" is _not_ a key sequence.  It's not a
"sequence of the keys 'S', 'o' and 'm'".  It's
presumably (a proposal for) a valid key-sequence
description string.

___

One opinion.  I agree with Richard that we should hear
more opinions.  Let's get the right dough before baking.

  parent reply	other threads:[~2021-11-08 23:50 UTC|newest]

Thread overview: 320+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20211004081724.6281.11798@vcs0.savannah.gnu.org>
     [not found] ` <20211004081726.AB24621048@vcs0.savannah.gnu.org>
2021-10-04  8:56   ` master 192f935 1/3: Add 'define-keymap' and 'defvar-keymap' Lars Ingebrigtsen
2021-10-04  9:42     ` Adam Porter
2021-10-04 10:13       ` Lars Ingebrigtsen
2021-10-10  7:40         ` Madhu
2021-10-19 18:02         ` Jonas Bernoulli
2021-10-19 18:18           ` Change indentation of keyword lists/arrays Lars Ingebrigtsen
2021-10-20 16:39             ` Juri Linkov
2021-10-20 19:02               ` Tassilo Horn
2021-10-21  3:02               ` Lars Ingebrigtsen
2021-10-21  3:59                 ` [External] : " Drew Adams
2021-10-04 13:06   ` master 192f935 1/3: Add 'define-keymap' and 'defvar-keymap' Stefan Monnier
2021-10-04 13:09     ` Lars Ingebrigtsen
2021-10-04 13:14       ` Stefan Monnier
2021-10-04 13:44         ` Lars Ingebrigtsen
2021-10-04 14:34           ` Lars Ingebrigtsen
2021-10-04 16:17           ` Stefan Monnier
2021-10-05  6:31             ` Lars Ingebrigtsen
     [not found] ` <20211004081727.4F24921048@vcs0.savannah.gnu.org>
2021-10-12 12:47   ` master 859190f 2/3: Convert some keymaps to defvar-keymap Stefan Kangas
2021-10-12 13:00     ` Lars Ingebrigtsen
2021-10-12 13:18       ` Stefan Kangas
2021-10-12 13:22         ` Lars Ingebrigtsen
2021-10-12 14:24           ` Stefan Kangas
2021-10-12 20:22             ` Lars Ingebrigtsen
2021-10-12 20:32               ` Lars Ingebrigtsen
2021-10-12 21:34                 ` Stefan Kangas
2021-10-12 23:23                   ` Lars Ingebrigtsen
2021-10-12 23:40                     ` Lars Ingebrigtsen
2021-10-13  3:18                     ` Moving kbd to subr.el Stefan Kangas
2021-10-13 11:10                       ` Lars Ingebrigtsen
2021-10-13 12:31                       ` Eli Zaretskii
2021-10-13 12:42                         ` Stefan Monnier
2021-10-13 14:26                           ` T.V Raman
2021-10-13 15:01                             ` Stefan Kangas
2021-10-13 15:03                               ` Stefan Kangas
2021-10-13 16:01                                 ` T.V Raman
2021-10-13 15:11                               ` T.V Raman
2021-10-13 12:50                         ` Stefan Kangas
2021-10-13 13:28                           ` Eli Zaretskii
2021-10-13 13:33                             ` Stefan Kangas
2021-10-13 22:28                       ` Stefan Kangas
2021-10-13 22:45                         ` Lars Ingebrigtsen
2021-10-13 22:54                           ` Lars Ingebrigtsen
2021-10-14  7:23                         ` Eli Zaretskii
2021-10-14 11:50                           ` Stefan Kangas
2021-10-14 11:56                             ` Eli Zaretskii
2021-10-14 12:06                               ` Lars Ingebrigtsen
2021-10-14 20:28                                 ` Stefan Kangas
2021-10-14 20:55                                   ` Lars Ingebrigtsen
2021-10-14 21:04                                     ` Stefan Kangas
2021-10-14 21:13                                       ` Lars Ingebrigtsen
2021-10-15  2:07                                         ` Stefan Kangas
2021-10-15 10:28                                           ` Lars Ingebrigtsen
2021-10-15 11:05                                             ` Eli Zaretskii
2021-10-15 11:10                                               ` Eli Zaretskii
2021-10-15 11:34                                                 ` Andreas Schwab
2021-10-15 12:31                                                   ` Lars Ingebrigtsen
2021-10-15 12:39                                                     ` Lars Ingebrigtsen
2021-10-15 13:32                                                     ` Stefan Monnier
2021-10-15 14:04                                                       ` Lars Ingebrigtsen
2021-10-15 14:44                                                         ` Stefan Kangas
2021-10-15 16:05                                                           ` Stefan Monnier
2021-10-15 16:31                                                           ` T.V Raman
2021-10-15 11:26                                               ` Lars Ingebrigtsen
2021-10-16 13:48                                           ` Lars Ingebrigtsen
2021-10-16 14:33                                             ` Stefan Kangas
2021-10-16 15:55                                               ` Lars Ingebrigtsen
2021-10-17 18:54                                                 ` Lars Ingebrigtsen
2021-10-17 19:32                                                   ` Gregory Heytings
2021-10-17 19:39                                                     ` Eli Zaretskii
2021-10-17 19:42                                                       ` Gregory Heytings
2021-10-17 19:58                                                         ` Lars Ingebrigtsen
2021-10-18 11:41                                                           ` Eli Zaretskii
2021-10-18 11:52                                                             ` Gregory Heytings
2021-10-18 13:01                                                               ` Eli Zaretskii
2021-10-18 13:07                                                                 ` Gregory Heytings
2021-10-18 12:40                                                             ` Stefan Monnier
2021-10-20  6:47                                                             ` Richard Stallman
2021-10-20  7:48                                                               ` Lars Ingebrigtsen
2021-10-20 13:18                                                                 ` Stefan Kangas
2021-10-21  2:52                                                                   ` Lars Ingebrigtsen
2021-10-21  3:36                                                                     ` Stefan Kangas
2021-10-21  3:39                                                                       ` Lars Ingebrigtsen
2021-10-21  4:07                                                                         ` Stefan Kangas
2021-10-21  4:37                                                                           ` Lars Ingebrigtsen
2021-10-21  4:58                                                                           ` [External] : " Drew Adams
2021-10-20 14:21                                                                 ` T.V Raman
2021-10-21  2:53                                                                   ` Lars Ingebrigtsen
2021-10-21 14:19                                                                     ` T.V Raman
2021-10-20 18:51                                                                 ` Philip Kaludercic
2021-10-21  2:53                                                                   ` Lars Ingebrigtsen
2021-10-21 13:40                                                                     ` Philip Kaludercic
2021-10-22 14:20                                                                       ` Lars Ingebrigtsen
2021-10-22 14:57                                                                         ` Philip Kaludercic
2021-10-22 15:02                                                                           ` Lars Ingebrigtsen
2021-10-22 15:06                                                                             ` Philip Kaludercic
2021-10-22 15:10                                                                               ` Lars Ingebrigtsen
2021-10-22 18:16                                                                                 ` Philip Kaludercic
2021-10-22 18:18                                                                                   ` Lars Ingebrigtsen
2021-10-23 23:29                                                                                     ` Richard Stallman
2021-10-24  6:10                                                                                       ` Eli Zaretskii
2021-10-26  3:01                                                                                         ` Richard Stallman
2021-10-24 13:24                                                                                       ` Lars Ingebrigtsen
2021-10-24 18:10                                                                                         ` Corwin Brust
2021-10-24 18:42                                                                                           ` Lars Ingebrigtsen
2021-10-25 16:06                                                                                             ` Corwin Brust
2021-10-25 16:10                                                                                               ` Philip Kaludercic
2021-10-27 14:41                                                                                                 ` Richard Stallman
2021-10-28 12:19                                                                                         ` Richard Stallman
2021-10-28 12:25                                                                                           ` Lars Ingebrigtsen
2021-10-30  6:53                                                                                             ` Richard Stallman
2021-10-30 12:36                                                                                               ` Lars Ingebrigtsen
2021-10-31  2:39                                                                                                 ` Richard Stallman
2021-10-31 14:57                                                                                                   ` Lars Ingebrigtsen
2021-11-02  3:54                                                                                                     ` New key binding syntax Richard Stallman
2021-11-02 11:08                                                                                                       ` John Yates
2021-11-04  2:36                                                                                                         ` Richard Stallman
2021-11-04  9:37                                                                                                           ` Robert Pluim
2021-11-04 17:09                                                                                                             ` Lars Ingebrigtsen
2021-11-04 22:46                                                                                                               ` John Yates
2021-11-04 22:48                                                                                                                 ` Lars Ingebrigtsen
2021-11-04 22:53                                                                                                                   ` John Yates
2021-11-05  2:25                                                                                                                     ` Lars Ingebrigtsen
2021-11-05 12:21                                                                                                                       ` John Yates
2021-11-05 13:45                                                                                                                         ` Lars Ingebrigtsen
2021-11-06 13:52                                                                                                                           ` John Yates
2021-11-05  3:57                                                                                                               ` Richard Stallman
2021-11-05  5:41                                                                                                                 ` Alexandre Garreau
2021-11-06  3:20                                                                                                             ` Richard Stallman
2021-11-02 12:10                                                                                                       ` Dmitry Gutov
2021-11-04  2:36                                                                                                         ` Richard Stallman
2021-11-02 16:22                                                                                                       ` Alexandre Garreau
2021-11-04  2:33                                                                                                         ` Richard Stallman
2021-11-04  8:53                                                                                                           ` Yuri Khan
2021-11-05  6:08                                                                                                             ` Alexandre Garreau
2021-11-05  8:56                                                                                                               ` Yuri Khan
2021-11-05  9:13                                                                                                                 ` Alexandre Garreau
2021-11-05 10:03                                                                                                                   ` Yuri Khan
2021-11-05 11:04                                                                                                                     ` Alexandre Garreau
2021-11-05 12:02                                                                                                                       ` Yuri Khan
2021-11-06  3:20                                                                                                             ` Richard Stallman
2021-11-05  5:32                                                                                                           ` Alexandre Garreau
2021-11-07  4:25                                                                                                             ` Richard Stallman
2021-11-07  4:48                                                                                                               ` Emanuel Berg via Emacs development discussions.
2021-11-08 23:50                                                                                                       ` Drew Adams [this message]
2021-11-10  4:35                                                                                                         ` [External] : " Richard Stallman
2021-11-10 14:53                                                                                                           ` Stefan Kangas
2021-11-10 17:24                                                                                                             ` Drew Adams
2021-11-13  4:10                                                                                                             ` Richard Stallman
2021-11-13 18:47                                                                                                               ` Drew Adams
2021-11-16  4:05                                                                                                                 ` Richard Stallman
2021-11-16  6:21                                                                                                                   ` Alexandre Garreau
2021-11-18  3:52                                                                                                                     ` Richard Stallman
2021-11-18  5:01                                                                                                                       ` Yuri Khan
2021-11-18 14:10                                                                                                                         ` Alexandre Garreau
2021-11-18 14:59                                                                                                                           ` Yuri Khan
2021-11-18 15:22                                                                                                                             ` Eli Zaretskii
2021-11-18 15:39                                                                                                                               ` Yuri Khan
2021-11-18 16:50                                                                                                                                 ` Eli Zaretskii
2021-11-18 15:32                                                                                                                             ` Alexandre Garreau
2021-11-18 16:20                                                                                                                               ` Yuri Khan
2021-11-18 16:53                                                                                                                                 ` Eli Zaretskii
2021-11-18 21:13                                                                                                                                 ` Alexandre Garreau
2021-11-18 11:05                                                                                                                       ` Alexandre Garreau
2021-11-18 11:31                                                                                                                       ` Stefan Kangas
2021-11-19  4:44                                                                                                                         ` Richard Stallman
2021-11-19  6:05                                                                                                                           ` Alexandre Garreau
2021-11-19  6:53                                                                                                                             ` Po Lu
2021-11-19  7:40                                                                                                                             ` Eli Zaretskii
2021-11-19 11:33                                                                                                                               ` Alexandre Garreau
2021-11-19 12:43                                                                                                                                 ` Eli Zaretskii
2021-11-19 12:48                                                                                                                                   ` Alexandre Garreau
2021-11-16 16:25                                                                                                                   ` Drew Adams
2021-11-10 17:24                                                                                                           ` Drew Adams
2021-10-17 19:55                                                     ` Moving kbd to subr.el Lars Ingebrigtsen
2021-10-17 21:20                                                       ` Gregory Heytings
2021-10-18  6:02                                                         ` Lars Ingebrigtsen
2021-10-18 12:46                                                           ` Gregory Heytings
2021-10-18 13:15                                                             ` Lars Ingebrigtsen
2021-10-18 13:50                                                               ` Gregory Heytings
2021-10-18 15:50                                                                 ` Stefan Monnier
2021-10-18 16:03                                                                   ` Gregory Heytings
2021-10-18 13:53                                                               ` Stefan Kangas
2021-10-18 13:59                                                                 ` Lars Ingebrigtsen
2021-10-18 14:44                                                                   ` [External] : " Drew Adams
2021-10-18 15:34                                                                     ` Stefan Kangas
2021-10-18 15:53                                                                       ` Drew Adams
2021-10-18 15:53                                                                 ` Stefan Monnier
2021-10-18 15:58                                                                   ` Lars Ingebrigtsen
2021-10-18 16:33                                                                     ` Stefan Monnier
2021-10-18 20:40                                                                       ` Stefan Kangas
2021-10-18 22:26                                                                         ` Stefan Monnier
2021-10-19  2:31                                                                         ` Eli Zaretskii
2021-10-19  2:30                                                                       ` Lars Ingebrigtsen
2021-10-19  7:02                                                                         ` Juri Linkov
2021-10-19  7:48                                                                         ` Gregory Heytings
2021-10-19 10:46                                                                           ` Philip Kaludercic
2021-10-19 13:08                                                                             ` Gregory Heytings
2021-10-19 14:48                                                                             ` [External] : " Drew Adams
2021-10-19 17:10                                                                               ` Stefan Kangas
2021-10-19 17:51                                                                                 ` Drew Adams
2021-10-19 18:06                                                                                   ` Drew Adams
2021-10-20 22:34                                                                           ` Richard Stallman
2021-10-20 22:34                                                                           ` Richard Stallman
2021-10-22  3:29                                                                           ` Po Lu
2021-10-19 12:34                                                                         ` Stefan Monnier
2021-10-19 13:38                                                                           ` Lars Ingebrigtsen
2021-10-19 13:57                                                                             ` Stefan Kangas
2021-10-19 14:07                                                                               ` Lars Ingebrigtsen
2021-10-19 14:13                                                                                 ` Stefan Kangas
2021-10-19 14:16                                                                                   ` Lars Ingebrigtsen
2021-10-19 14:25                                                                                     ` Stefan Kangas
2021-10-19 14:31                                                                                       ` Lars Ingebrigtsen
2021-10-19 15:03                                                                                       ` Robert Pluim
2021-10-19 14:56                                                                                     ` Andreas Schwab
2021-10-19 14:45                                                                                   ` Stefan Monnier
2021-10-19 15:09                                                                                     ` Lars Ingebrigtsen
2021-10-19 19:07                                                                                       ` Lars Ingebrigtsen
2021-10-19 19:00                                                                                     ` Howard Melman
2021-10-19 20:53                                                                                     ` T.V Raman
2021-10-19 20:59                                                                                       ` Lars Ingebrigtsen
2021-10-19 21:50                                                                                         ` Dmitry Gutov
2021-10-20 22:37                                                                                           ` Richard Stallman
2021-10-21  2:54                                                                                             ` Lars Ingebrigtsen
2021-10-20  1:54                                                                                         ` T.V Raman
2021-10-19 14:00                                                                             ` Dmitry Gutov
2021-10-19 14:03                                                                             ` Gregory Heytings
2021-10-19 16:05                                                                             ` Gregory Heytings
2021-10-19 17:43                                                                               ` Stefan Kangas
2021-10-19 18:54                                                                             ` Juri Linkov
2021-10-25 14:22                                                                             ` Making a key undefined again Jonas Bernoulli
2021-10-25 14:30                                                                               ` [External] : " Drew Adams
2021-10-25 14:37                                                                               ` Lars Ingebrigtsen
2021-10-25 17:31                                                                               ` Stefan Monnier
2021-10-25 17:48                                                                                 ` Gregory Heytings
2021-10-25 22:49                                                                                 ` Jonas Bernoulli
2021-10-25 22:59                                                                                   ` Jonas Bernoulli
2021-10-25 23:10                                                                                   ` Stefan Monnier
2021-10-25 23:27                                                                                     ` Gregory Heytings
2021-10-26 16:11                                                                                     ` Jonas Bernoulli
2021-10-26 19:33                                                                                       ` Stefan Monnier
2021-10-18 16:01                                                                 ` Moving kbd to subr.el Juri Linkov
2021-10-18 16:27                                                                   ` Gregory Heytings
2021-10-19  3:08                                                                   ` Lars Ingebrigtsen
2021-10-18  1:41                                                       ` T.V Raman
2021-10-18 11:40                                                       ` Eli Zaretskii
2021-10-14  7:27                         ` Andreas Schwab
2021-10-14 11:33                           ` Stefan Kangas
2021-10-14 11:53                             ` Andreas Schwab
2021-10-14 12:08                               ` Lars Ingebrigtsen
2021-10-14 12:24                                 ` Andreas Schwab
2021-10-14 13:10                                   ` Stefan Kangas
2021-10-14 13:55                                     ` Dmitry Gutov
2021-10-14 14:05                                       ` dick
2021-10-14 14:15                                         ` Dmitry Gutov
2021-10-14 14:31                                           ` dick
2021-10-14 14:33                                             ` Lars Ingebrigtsen
2021-10-14 14:36                                               ` Gregory Heytings
2021-10-13 12:36                     ` Representing key sequences (was: master 859190f 2/3: Convert some keymaps to defvar-keymap) Stefan Monnier
2021-10-13 13:17                       ` Stefan Kangas
2021-10-13 16:28                         ` Representing key sequences Stefan Monnier
2021-10-13 23:48                           ` Lars Ingebrigtsen
2021-10-13 14:12                       ` Lars Ingebrigtsen
2021-10-13 14:40                         ` Andreas Schwab
2021-10-13  8:54               ` master 859190f 2/3: Convert some keymaps to defvar-keymap Gregory Heytings
2021-10-13 11:15                 ` Lars Ingebrigtsen
2021-10-13 12:25                   ` Gregory Heytings
2021-10-13 12:59                     ` Lars Ingebrigtsen
2021-10-13 12:55                 ` Eli Zaretskii
2021-10-13 13:05                   ` Gregory Heytings
2021-10-13 13:34                     ` Eli Zaretskii
2021-10-13 14:28                       ` Gregory Heytings
2021-10-13 14:30                         ` Lars Ingebrigtsen
2021-10-13 14:52                           ` Stefan Kangas
2021-10-13 15:32                             ` Gregory Heytings
2021-10-13 15:45                         ` Eli Zaretskii
2021-10-13 16:07                           ` Gregory Heytings
2021-10-13 19:01                             ` Eli Zaretskii
2021-10-13 21:53                               ` Gregory Heytings
2021-10-13 22:55                                 ` Gregory Heytings
2021-10-14  7:29                                   ` Eli Zaretskii
2021-10-14  6:48                                 ` Eli Zaretskii
2021-10-14  7:41                                   ` Gregory Heytings
2021-10-14 12:07                                     ` Stefan Kangas
2021-10-14 12:09                                       ` Lars Ingebrigtsen
2021-10-14 12:27                                       ` Gregory Heytings
2021-10-14 12:30                                         ` Lars Ingebrigtsen
2021-10-14 12:58                                           ` Gregory Heytings
2021-10-14 13:28                                             ` Lars Ingebrigtsen
2021-10-14 13:31                                               ` Gregory Heytings
2021-10-14 13:36                                                 ` Lars Ingebrigtsen
2021-10-14 13:41                                                   ` Gregory Heytings
2021-10-14 13:42                                                     ` Lars Ingebrigtsen
2021-10-14 13:53                                                       ` Gregory Heytings
2021-10-14 13:59                                                         ` Lars Ingebrigtsen
2021-10-14 14:14                                                           ` Gregory Heytings
2021-10-14 19:07                                         ` Stefan Kangas
2021-10-14 19:13                                           ` Lars Ingebrigtsen
2021-10-14 19:32                                             ` Gregory Heytings
2021-10-14 20:01                                             ` Lars Ingebrigtsen
2021-10-14 20:04                                               ` Stefan Monnier
2021-10-14 20:17                                                 ` Stefan Kangas
2021-10-14 20:35                                                   ` Lars Ingebrigtsen
2021-10-14 20:43                                                     ` Lars Ingebrigtsen
2021-10-14 20:58                                                       ` Stefan Kangas
2021-10-14 21:02                                                         ` Lars Ingebrigtsen
2021-10-14 21:10                                                       ` Andreas Schwab
2021-10-14 21:58                                                         ` Lars Ingebrigtsen
2021-10-16 17:07                                                           ` Gregory Heytings
2021-10-14 20:59                                                     ` Stefan Monnier
2021-10-14 21:11                                                       ` Lars Ingebrigtsen
2021-10-14 19:31                                           ` Gregory Heytings
2021-10-14 19:54                                             ` Andreas Schwab
2021-10-14 19:59                                               ` Gregory Heytings
2021-10-14 22:22                         ` Richard Stallman
2021-10-13 22:37             ` Richard Stallman
2021-10-12 19:28           ` Juri Linkov
2021-10-12 20:10             ` Lars Ingebrigtsen
2021-10-12 14:22     ` Eli Zaretskii
2021-10-13 22:36       ` Richard Stallman
2021-10-14  7:25         ` Eli Zaretskii

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=SJ0PR10MB54889900EB00FCB8B54A3FFBF3919@SJ0PR10MB5488.namprd10.prod.outlook.com \
    --to=drew.adams@oracle.com \
    --cc=emacs-devel@gnu.org \
    --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).