unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Jean Louis <bugs@rcdrun.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: jamtlu@gmail.com, emacs-devel@gnu.org
Subject: Re: How to make Emacs popular again.
Date: Sat, 26 Sep 2020 21:58:24 +0300	[thread overview]
Message-ID: <20200926185824.GV1349@protected.rcdrun.com> (raw)
In-Reply-To: <83sgb4pfvl.fsf@gnu.org>

* Eli Zaretskii <eliz@gnu.org> [2020-09-26 21:12]:
> > Date: Sat, 26 Sep 2020 20:36:51 +0300
> > From: Jean Louis <bugs@rcdrun.com>
> > Cc: jamtlu@gmail.com, emacs-devel@gnu.org
> > 
> > * Eli Zaretskii <eliz@gnu.org> [2020-09-26 19:55]:
> > > You cannot learn this stuff by walking around the UI and reading the
> > > tooltips.  It's unrealistic.  Those tooltips assume some minimal
> > > knowledge of the terminology and the UI elements, which are described
> > > in the tutorial and in the first chapter of the manual.
> > 
> > It is your opinion.
> 
> Each one of us expresses his or her own opinions.  It's a trivium.

Sure, but we talk about users, so to say that one cannot learn the
stuff in general, should be supported by some kind of a survey. The
fact is right now is that not every tooltip is usable, so fact is now
in present time, that in my particular example, I cannot learn several
words.

So it will happen to new user to get confused. Users expect tooltips
to describe the function, and description shall be made better
understandable. 

> > I tried finding what should undecided-unix mean, and I cannot find, I
> > just found that "unix" is alias for "undecided-unix".
> 
> Type "C-h i m emacs RET i undecided RET", and read there.

I did not find the definition for undecided-unix by following your
example. That it is alias, does not define it.

> > Does the tooltip assume that only experienced user, in this case,
> > experienced developer is to know what it means?!
> 
> Not "experienced", but one who have read some minimal introductory
> material about the Emacs UI, and/or have learned how to use the manual
> to search for (as yet) unknown concepts.

For that group of people I disagree they need any tooltip
then. Tooltip is for users to understand it, it is not for Emacs UI
skilled people. It is for unskilled.

> > tooltip should help the user understand what is it.
> 
> It does.  It just doesn't (and cannot) explain everything, because a
> tooltip is a small widget which cannot display a very long text, and
> because clicking on the text in a tooltip is impossible, at least in
> some/most toolkits we use.

The point is not one tooltip, there are many examples, yet it is hard
for you to see what I see, and what could be obvious to many, that is
why few threads have been spawned here.

In marketing, I always learn to look from client's viewpoint. 

> > If user cannot understand the word, then cannot understand the
> > sentence, so how it can be good to bring users to misunderstandings? I
> > don't get the logic.
> 
> The logic is that when they find some term that is not clear, and the
> text there doesn't have a hyperlink to where that term is described in
> more detail (there usually is), then the user should go to the
> Glossary and search the term there.

Sure, you know it. But does it say anywhere? Does it guide the user?

Emacs as Lisp have all the capacities to guide the user. It has the
capacity to provide a humorous psychoterapist, so it can also guide a
user in better way.

> > > > I wanted to find out about "Search Files..." so the menu option is
> > > > pretty clear, it helps me search files, but then description about
> > > > "Search files" does not even mention the word "search".
> > > 
> > > Unsurprisingly, the doc string assumes the user already knows what
> > > Grep is.  So it doesn't say "search", because that's what Grep stands
> > > for.
> > 
> > >From the new user viewpoint I cannot possibly agree with that
> > explanation. Descriptions of menus should be accessible and
> > understandable for users especially from a new user viewpoint.
> 
> Once again, there are limitations of what can be usefully said in a
> short menu entry and its tooltip.  If you have practical suggestions
> for how to use up the available screen estate better in that case,
> please propose how to improve the wording we have there.

I think that general principles shall be set first, as to improve
wording, there are so many that could be improved, the descriptions
should not be written in first place that do not describe it
meaningfully. So I do not speak of a specific bug, I speak of general
flaws hindering understanding for users.

> > > Doc strings are in generally terse; if you want more details,
> > > including background etc, you need to read the description of the
> > > commands in the user manual.  There's a 95-line section there about
> > > M-x grep and related commands.
> > 
> > I am not speaking of myself Eli. I am speaking of new user viewpoint.
> 
> So am I.

Alright, then your viewpoint for new users is way advanced. You are
targeting various groups, not only Unix hackers or experienced users
or UI skilled users.

> > Even "Search files..." is not well described. You cannot possibly
> > design any interface for new user with experienced user viewpoint.
> 
> Once again, the menus assume a certain level of understanding and
> expectations.  You are claiming that those assumptions are incorrect,
> but the solutions you propose are simply not practical, as they ignore
> the basic limitations of the screen estate we have for this, and would
> make the doc strings impractically verbose and full of loosely-related
> background information.  Our policy is to leave the extra information
> for the manual.

The doc string, if it is taken out of it, that relates to Search
files, should be more descriptive.

From grep manual:

       grep searches the named input FILEs for lines containing a match to the
       given PATTERN.  If no files are specified, or if the file “-” is given,
       grep  searches  standard  input.   By default, grep prints the matching
       lines.

So something like:

Search files (Grep...) is using the external shell command "grep" that
searches the named input files for lines containing a match to the
given pattern.

That would be in this particular example much better described then:

> <menu-bar> <tools> <grep> runs the command grep (found in global-map),
> which is an autoloaded interactive compiled Lisp function in
> ‘grep.el’.

> It is bound to <menu-bar> <tools> <grep>.

> (grep COMMAND-ARGS)

>   Probably introduced at or before Emacs version 1.4.

> Run Grep with user-specified COMMAND-ARGS.
> The output from the command goes to the "*grep*" buffer.

> While Grep runs asynchronously, you can use C-x ` (M-x next-error),
> or RET in the *grep* buffer, to go to the lines where Grep found
> matches.  To kill the Grep job before it finishes, type C-c C-k.

> > We speak here more of principles of design of the interface and
> > descriptions. Practical implementations may come later.
> 
> Emacs already does have the practical implementations.  They are
> well-thought and are being constantly improved.  There's no need to
> start from scratch, as what we have already is a reasonably good and
> newbie-friendly UI.  It is newbie-friendly because the Emacs
> developers of past and present invest a lot of efforts into making it
> so.

I don't say from scratch, many things are already there, descriptions,
Info, docstring, I just speak of better connectivity to instructions
and to information and improvement of those sentences that appear not
understandable to average computer users, with the purpose to bring it
to more users in the world.

Myself personally, I like it how it is, but to draw new users, it has
to become fancier, easier, moderner, use any attribute here, the point
is that it does need that group of improvements that will attract
larger users' base, and not have them reject it.

It is good to read what some people are writing here:
https://news.ycombinator.com/item?id=24593616&p=2 so read those
comments and see.

Jean



  reply	other threads:[~2020-09-26 18:58 UTC|newest]

Thread overview: 292+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-26 13:38 How to make Emacs popular again James Lu
2020-09-26 13:47 ` Pankaj Jangid
2020-09-26 13:50   ` James Lu
2020-09-26 13:59 ` Philip K.
2020-09-26 14:53   ` Ergus
2020-09-26 16:59     ` Jean Louis
2020-09-26 18:26     ` Dmitry Gutov
2020-09-27  2:41       ` Richard Stallman
2020-09-27 13:16         ` Dmitry Gutov
2020-09-28  3:45           ` Richard Stallman
2020-09-28 23:29             ` Dmitry Gutov
2020-09-28 23:51               ` Eduardo Ochs
2020-09-30  4:37                 ` Richard Stallman
2020-09-30  5:26                   ` Eduardo Ochs
2020-10-02  3:45                     ` Richard Stallman
2020-10-02  4:43                       ` Eduardo Ochs
2020-09-30 10:03                   ` Jean Louis
2020-10-01  4:14                     ` Richard Stallman
2020-10-01  7:41                       ` Gregory Heytings via Emacs development discussions.
2020-10-01  8:11                       ` Philip K.
2020-10-02  3:52                         ` Richard Stallman
2020-10-02 16:02                           ` dict - " Jean Louis
2020-10-03  2:56                             ` Richard Stallman
2020-10-03  7:47                               ` Jean Louis
2020-10-10  3:53                                 ` Richard Stallman
2020-10-03  9:00                               ` Eli Zaretskii
2020-10-10  3:53                                 ` Richard Stallman
2020-10-01 14:21                       ` Jean Louis
2020-10-01  4:14                     ` Richard Stallman
2020-10-01 14:22                       ` Jean Louis
2020-09-30 13:59                   ` Eli Zaretskii
2020-10-01  4:13                     ` Richard Stallman
2020-10-01 13:07                       ` Eli Zaretskii
2020-10-01 14:39                         ` Jean Louis
2020-10-01 14:53                           ` Eli Zaretskii
2020-10-01 15:11                           ` tomas
2020-10-01 16:15                             ` Jean Louis
2020-10-01 16:30                               ` tomas
2020-10-02  3:53                             ` Richard Stallman
2020-10-01 14:46                         ` Alfred M. Szmidt
2020-10-01 16:21                           ` Jean Louis
2020-10-02  3:52                           ` Richard Stallman
2020-10-02  7:08                             ` Eli Zaretskii
2020-10-02 10:11                               ` Sv: " arthur miller
2020-10-02 16:13                               ` Jean Louis
2020-10-02 16:18                                 ` Eli Zaretskii
2020-10-02 16:33                                   ` Jean Louis
2020-10-03  7:26                                     ` Eli Zaretskii
2020-10-04  3:45                                       ` Richard Stallman
2020-10-04  7:31                                         ` Eli Zaretskii
2020-10-10  3:53                                           ` Richard Stallman
2020-10-10  7:24                                           ` Tomas Hlavaty
2020-10-10  7:52                                             ` Eli Zaretskii
2020-10-10 12:22                                               ` Tomas Hlavaty
2020-10-04  8:56                                         ` Jean Louis
2020-10-04  3:38                               ` Richard Stallman
2020-10-02 16:07                             ` Jean Louis
2020-10-03  2:56                               ` Richard Stallman
2020-10-03  8:28                                 ` Jean Louis
2020-10-01 14:52                         ` Stefan Monnier
2020-10-02  3:52                           ` Richard Stallman
2020-10-02  3:52                         ` Richard Stallman
2020-10-02  7:07                           ` Eli Zaretskii
2020-10-04  3:38                             ` Richard Stallman
2020-10-04  6:57                               ` Eli Zaretskii
2020-10-04  9:02                                 ` Jean Louis
2020-10-04  9:06                                   ` Eli Zaretskii
2020-10-05  3:14                                 ` Richard Stallman
2020-10-05  5:54                                   ` Eli Zaretskii
2020-10-06  2:34                                     ` Richard Stallman
2020-10-04  8:25                               ` Dictionaries better be offline - " Jean Louis
2020-10-04  3:38                             ` Richard Stallman
2020-10-04  7:03                               ` Eli Zaretskii
2020-10-04 10:07                                 ` Jean Louis
2020-10-04 10:52                                   ` Eli Zaretskii
2020-10-04 13:54                                     ` Jean Louis
2020-10-04 14:05                                       ` Eli Zaretskii
2020-10-05  3:12                                       ` Richard Stallman
2020-10-10  3:53                                 ` Richard Stallman
2020-10-11  5:37                                   ` How to make Emacs popular again: Use monospaced fonts less Lars Ingebrigtsen
2020-10-11  6:28                                     ` Eli Zaretskii
2020-10-11  6:35                                       ` Lars Ingebrigtsen
2020-10-11  7:00                                         ` Eli Zaretskii
2020-10-11 10:54                                           ` Lars Ingebrigtsen
2020-10-11 11:28                                             ` Lars Ingebrigtsen
2020-10-11 13:58                                               ` Eli Zaretskii
2020-10-11 22:21                                                 ` Lars Ingebrigtsen
2020-10-12 16:49                                                   ` Eli Zaretskii
2020-10-13  0:38                                                     ` Lars Ingebrigtsen
2020-10-13 14:40                                                       ` Eli Zaretskii
2020-10-14  4:03                                                         ` Lars Ingebrigtsen
2020-10-14 14:54                                                           ` Eli Zaretskii
2020-10-14 17:07                                                             ` Stefan Monnier
2020-10-14 17:39                                                               ` Eli Zaretskii
2020-10-14 22:53                                                                 ` Stefan Monnier
2020-10-15 13:57                                                                   ` Eli Zaretskii
2020-10-15 14:21                                                                     ` Stefan Monnier
2020-10-15 14:28                                                                       ` Eli Zaretskii
2020-10-15 14:48                                                                         ` Stefan Monnier
2020-10-15 14:52                                                                           ` Lars Ingebrigtsen
2020-10-15 15:00                                                                           ` Eli Zaretskii
2020-10-15 16:25                                                                             ` Stefan Monnier
2020-10-15 16:50                                                                               ` Eli Zaretskii
2020-10-15 18:31                                                                                 ` Stefan Monnier
2020-10-15 18:49                                                                                   ` Eli Zaretskii
2020-10-15  6:51                                                               ` Lars Ingebrigtsen
2020-10-15 12:26                                                                 ` Stefan Monnier
2020-10-15  6:48                                                             ` Lars Ingebrigtsen
2020-10-15 14:02                                                               ` Eli Zaretskii
2020-10-15 14:07                                                                 ` Lars Ingebrigtsen
2020-10-15 14:24                                                                   ` Eli Zaretskii
2020-10-16  5:06                                                                     ` Lars Ingebrigtsen
2020-10-11 13:56                                             ` Eli Zaretskii
2020-10-11 22:14                                               ` Lars Ingebrigtsen
2020-10-11 23:39                                                 ` Drew Adams
2020-10-12 16:46                                                 ` Eli Zaretskii
2020-10-13  0:35                                                   ` Lars Ingebrigtsen
2020-10-13 14:39                                                     ` Eli Zaretskii
2020-10-14  4:01                                                       ` Lars Ingebrigtsen
2020-10-14 14:49                                                         ` Eli Zaretskii
2020-10-11 13:21                                       ` Stefan Monnier
2020-10-11 14:02                                         ` Eli Zaretskii
2020-10-11 14:35                                     ` Teemu Likonen
2020-10-11 15:21                                     ` Andreas Schwab
2020-10-11 18:29                                       ` Stefan Monnier
2020-10-11 18:58                                         ` Andreas Schwab
2020-10-11 19:41                                           ` Stefan Monnier
2020-10-11 19:42                                         ` Drew Adams
2020-10-11 19:56                                         ` Stephen Berman
2020-10-11 21:09                                           ` Stefan Monnier
2020-10-11 22:23                                           ` Stefan Monnier
2020-10-11 22:50                                             ` Stephen Berman
2020-12-02 21:06                                             ` Juri Linkov
2020-12-02 22:33                                               ` Stephen Berman
2020-12-03 21:05                                                 ` Juri Linkov
2020-12-03 21:06                                                 ` Roland Winkler
2020-12-03 14:48                                               ` Eli Zaretskii
2020-10-12  9:47                                         ` Andreas Schwab
2020-10-12 11:17                                         ` Ricardo Wurmus
2020-10-12 17:24                                           ` Stefan Monnier
2020-10-12 11:24                                     ` Ricardo Wurmus
2020-10-12 16:30                                       ` Drew Adams
2020-10-12 23:02                                         ` Tim Cross
2020-10-13  0:34                                       ` Lars Ingebrigtsen
2020-10-13  6:02                                         ` Ricardo Wurmus
2020-10-13 20:00                                     ` Juri Linkov
2020-10-13 20:36                                       ` Drew Adams
2020-10-14  4:05                                       ` Lars Ingebrigtsen
2020-10-14  7:06                                         ` Protesilaos Stavrou
2020-10-14  7:09                                           ` Lars Ingebrigtsen
2020-10-14  7:46                                             ` Protesilaos Stavrou
2020-10-14  7:53                                               ` Lars Ingebrigtsen
2020-10-14  8:30                                                 ` James Cloos
2020-10-14  9:14                                                   ` tomas
2020-10-14 15:03                                                 ` Eli Zaretskii
2020-10-14  8:03                                         ` Juri Linkov
2020-10-14 16:38                                           ` Drew Adams
2020-10-15  6:45                                           ` Lars Ingebrigtsen
2020-10-14 13:21                                         ` Stefan Monnier
2021-04-12  2:19                                     ` Stefan Kangas
2021-04-12  7:58                                       ` Lars Ingebrigtsen
2021-04-12 13:23                                         ` Stefan Kangas
2021-04-12 13:39                                           ` Eli Zaretskii
2021-04-12 15:27                                             ` Stefan Kangas
2021-04-12 16:40                                               ` Eli Zaretskii
2021-04-12 17:29                                                 ` Stefan Kangas
2021-04-12 17:51                                                   ` Eli Zaretskii
2021-04-13  7:34                                                     ` Lars Ingebrigtsen
2021-04-19  3:13                                     ` Robert Weiner
2021-04-19  7:12                                       ` tomas
2021-04-19  7:55                                       ` Kévin Le Gouguec
2021-04-19 12:31                                         ` Lars Ingebrigtsen
2021-04-19 12:48                                         ` Eli Zaretskii
2020-10-04  8:27                               ` How to make Emacs popular again Jean Louis
2020-10-01 14:08                     ` Jean Louis
2020-10-01 15:01                       ` James Lu
2020-10-01 15:03                         ` James Lu
2020-10-01 16:13                           ` GNU Dico - " Jean Louis
2020-10-01 16:29                             ` Thibaut Verron
2020-10-01 16:39                               ` Jean Louis
2020-10-01 16:32                             ` Eli Zaretskii
2020-10-01 16:41                               ` Jean Louis
2020-10-01 16:55                                 ` Thibaut Verron
2020-10-01 16:44                               ` Jean Louis
2020-10-01 15:19                         ` tomas
2020-10-01 15:33                         ` Stefan Monnier
2020-10-01 16:07                         ` Jean Louis
2020-10-01 19:15                         ` chad
2020-10-02  5:41                           ` Jean Louis
2020-09-29  8:08               ` Kévin Le Gouguec
2020-09-29 11:40                 ` Robert Pluim
2020-09-30  4:37               ` Richard Stallman
2020-09-26 16:30 ` Jean Louis
2020-09-26 16:51   ` James Lu
2020-09-26 18:06     ` Dmitry Gutov
2020-09-27  2:42       ` Richard Stallman
2020-09-27  8:27         ` Dmitry Gutov
2020-09-28  3:47           ` Richard Stallman
2020-09-26 16:54   ` Eli Zaretskii
2020-09-26 17:36     ` Jean Louis
2020-09-26 18:11       ` Eli Zaretskii
2020-09-26 18:58         ` Jean Louis [this message]
2020-09-26 19:26           ` Drew Adams
2020-09-26 19:28           ` Eli Zaretskii
2020-09-26 21:04             ` James Lu
2020-09-27  2:42       ` Richard Stallman
2020-09-27  6:29         ` Eli Zaretskii
2020-09-27  2:42       ` Richard Stallman
2020-09-27  7:32         ` Jean Louis
2020-09-27  7:53           ` Eli Zaretskii
2020-09-28 22:25             ` Jean Louis
2020-09-29 14:11               ` Eli Zaretskii
2020-09-29 15:14                 ` Jean Louis
2020-10-20 13:22                   ` Arthur Miller
2020-10-20 15:46                     ` Jean Louis
2020-10-27  4:14                       ` Arthur Miller
2020-10-27  7:15                         ` Jean Louis
2020-10-22 14:09                     ` Jean Louis
2020-10-22 14:18                       ` Arthur Miller
2020-09-28  3:44           ` Richard Stallman
2020-09-26 19:27   ` Drew Adams
2020-09-27  2:41   ` Richard Stallman
2020-09-27  2:41   ` tooltip feature Richard Stallman
2020-09-27  9:42     ` Arthur Miller
2020-09-27 10:05       ` Eli Zaretskii
2020-09-27 10:29         ` Arthur Miller
2020-09-27 16:00       ` Stefan Monnier
2020-09-29  1:07         ` chad
2020-09-27 17:31   ` How to make Emacs popular again Bob Newell
2020-09-27 20:31     ` James Lu
2020-09-28  3:52       ` Richard Stallman
2020-09-28  6:05       ` Eli Zaretskii
2020-09-28 22:00       ` Jean Louis
2020-09-27 20:38     ` James Lu
2020-09-27 20:40       ` James Lu
2020-09-28  0:52       ` Bob Newell
2020-09-28  2:48         ` 황병희
2020-09-28 18:12         ` James Lu
2020-09-28  5:27       ` Jean Louis
2020-10-04 21:10     ` Dmitry Gutov
2020-10-07  8:58     ` Gregory Heytings via Emacs development discussions.
2020-10-07 11:21       ` João Távora
2020-10-07 14:28         ` Jean Louis
2020-10-08  4:42         ` Richard Stallman
2020-10-08  9:27           ` João Távora
2020-10-09  3:32             ` Richard Stallman
2020-10-08 14:05           ` Georges Ko
2020-10-08 14:13             ` Eli Zaretskii
2020-10-09  3:32             ` Lists of symbols in the Lisp Manual Richard Stallman
2020-10-08 14:22           ` How to make Emacs popular again Gregory Heytings via Emacs development discussions.
2020-10-08 14:29             ` Robert Pluim
2020-10-08 14:54               ` Gregory Heytings via Emacs development discussions.
2020-10-08 15:00                 ` Robert Pluim
2020-10-08 15:22                   ` Gregory Heytings via Emacs development discussions.
2020-10-08 18:08               ` Daniel Martín
2020-10-08 18:21                 ` Eli Zaretskii
2020-10-08 20:45                   ` Daniel Martín
2020-10-08 20:49                     ` Drew Adams
2020-10-09  6:37                     ` Eli Zaretskii
2020-10-08 21:57                   ` Stefan Monnier
2020-10-08 22:06                     ` Drew Adams
2020-10-08 22:16                       ` Stefan Monnier
2020-10-08 22:36                         ` Drew Adams
2020-10-08 22:41                           ` Gregory Heytings via Emacs development discussions.
     [not found]                             ` <efa8dd80-e172-4b16-9052-1aaa027c14d9@default>
     [not found]                               ` <834kn37v3p.fsf@gnu.org>
2020-10-09 15:25                                 ` Drew Adams
2020-10-09  6:41                     ` Eli Zaretskii
2020-10-09  7:38                     ` Gregory Heytings via Emacs development discussions.
2020-10-09  9:41                       ` Eli Zaretskii
2020-10-08 20:38                 ` Drew Adams
2020-10-08 20:39               ` Drew Adams
2020-10-08 22:01                 ` Gregory Heytings via Emacs development discussions.
2020-10-08 22:21                   ` Drew Adams
2020-10-08 22:33                     ` Gregory Heytings via Emacs development discussions.
2020-10-08 22:47                       ` Drew Adams
2020-10-08 23:13                         ` Gregory Heytings via Emacs development discussions.
2020-10-09 22:50                           ` Drew Adams
2020-10-10  0:51                             ` Daniel Martín
2020-10-10  2:15                               ` Drew Adams
2020-10-10  8:52                                 ` Michael Albinus
2020-10-10 16:20                                   ` Drew Adams
2020-10-08 20:45               ` Drew Adams
2020-10-09  3:32             ` Richard Stallman
2020-09-28 18:12   ` James Lu
2020-09-30 18:44   ` Juri Linkov
2020-09-30 20:51     ` Mathias Dahl
2020-10-01 18:51       ` Juri Linkov
2020-09-26 17:31 ` Stefan Monnier
2020-09-28  5:16 ` Jean Louis
2020-09-28 11:11   ` Ergus
2020-09-28 21:52     ` Jean Louis
2020-09-28  9:00 ` How to make Emacs popular again [or less square] Po Lu
2020-09-28  9:38   ` 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=20200926185824.GV1349@protected.rcdrun.com \
    --to=bugs@rcdrun.com \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=jamtlu@gmail.com \
    /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).