unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Drew Adams" <drew.adams@oracle.com>
To: "'Alan Mackenzie'" <acm@muc.de>
Cc: rms@gnu.org, 'Sascha Wilde' <wilde@sha-bang.de>,
	lennart.borgman@gmail.com, emacs-devel@gnu.org, juri@jurta.org,
	dann@ics.uci.edu, 'Stefan Monnier' <monnier@iro.umontreal.ca>,
	storm@cua.dk, 'Miles Bader' <miles@gnu.org>
Subject: RE: Tentative diagnosis of TMM's problem. [Re: Enabling TransientMarkMode by default]
Date: Thu, 21 Feb 2008 01:43:45 -0800	[thread overview]
Message-ID: <002801c8746e$413695a0$0600a8c0@us.oracle.com> (raw)
In-Reply-To: <20080221081923.GB1891@muc.de>

> Hi, Drew!

Hi Alan.

> > ....but the region is not active, so no highlighting.  ...., if you
> > have `mark-even-if-inactive' = t. 
> 
> Why the "so" in "so no highlighting"?
> I'm beginning to think that this is tautological (see below).

I'm no expert, but my understanding is no, it's not (see below).

> I'm beginning to think that people say "highlight a region" 
> (particularly in non-Emacs programs) when they really mean
> "create a region".  I think I've seen Lennart doing this
> (hi, Lennart!).  This lack of precision is unhelpful.

Lack of precision can be confusing, yes. Part of the difficulty about
speaking of this stuff without taking the extra words needed to clarify the
context is that different vocabulary is used in different contexts. In
particular, some of the discussion was about what people are used to doing
in other editors, where the terminology and behavior are different from
Emacs.

My understanding is the following. In Emacs:

1. As soon as you have set mark at least once, there is a region. The region
continues to exist for the rest of your Emacs session. It can be empty
(point = mark), but it is never destroyed.

2. Transient mark mode has a notion of active and inactive region (but the
region always exists - see #1). If you don't use t-m mode or one of its
derivatives such as delete-selection mode, then this distinction is not
important to you.

3. If you do use t-m mode: (a) You can activate and deactive the region.
This is, BTW, the same thing as activating and deactivating the mark. (b)
When the region is active, it is highlighted; when it is deactivated, it is
unhighlighted. (c) Commands such as C-SPC and C-x C-x activate the region.
Some other commands deactivate it. The command loop also deactivates it,
normally.

4. In t-m mode, some commands act differently, depending on whether the
region is active. For example, `query-replace' limits itself to the active
region; if the region is not active, then it acts on the whole buffer.

5. If you set option `mark-even-if-inactive' to non-nil, then you can always
use the region, even in t-m mode, and even when it is inactive. This option
has no effect unless you use t-m mode.

What's the point of #5, and isn't #5 confusing? Let me take the second part
first. Yes, it might confuse someone who doesn't know what to expect (which
is presumably why the default value is nil), because many commands that act
on the region will affect the region even if it is inactive and therefore
invisible. That could be disconcerting to a newbie, in particular. But it
can be handy for many Emacs users, I think. And it would become more
important with my suggestion - see below.

So what's the point of #5? Why have a notion of active/inactive, and why
make the region visible only some of the time, if you can still act on the
inactive, invisible region?

This is near the crux of what we've been debating, I think. IMO, there are
different use cases. Some people, I think, argue for one use case, and
others argue for the other use case. Both can be useful.

One use case is for operations that specifically are meant to act on the
active region. These are operations such as `query-replace' that offer
different actions depending on the active/inactive status, or they could be
operations (none comes to mind) for which it makes sense to show you (via
highlighting or bouncing the cursor) where the region is before you act on
it. Typically, these operations act on fairly large chunks of text, IMO.

The other use case is for all other region operations - operations for which
there is no special region vs buffer difference of behavior, and for which
you don't need or care to see the region before you whack it in some way.
These operations act on regions of all sizes, but on average they probably
act on smaller regions. If you want to delete a word or two, you just set
the region appropriately and then kill it.

Many Emacs users don't use t-m mode, so there is no distinction and only one
use case for them (the second one, above). In particular, they cannot take
advantage of the double-duty that commands such as `query-replace' offer.

Many other Emacs users do use t-m mode, but they leave
`mark-even-if-inactive' = nil, so they do not take advantage of the first
use case above. Even some t-m mode users who set `mark-even-if-inactive' = t
never or seldom, I suspect, take advantage of operations on the inactive
region.

And in fact, in t-m mode, the region is active a good part of the time, so
those users don't lose much. Each time you hit C-SPC, for instance, you
activate the region. Some people find it annoying that in cases like this
(C-SPC followed by simple cursor movement) the region is highlighted. Even
some people who choose to use t-m mode feel this way.

In particular, since C-SPC is often used to set multiple marks for
navigation, when you are doing that you are not really trying to redefine
the region (though that's what you are doing), and you are especially not
really intending to activate (and so highlight) the region.

Others might disagree with my summary, but I hope it helps.

What I threw out as a suggestion is to let users who choose so get rid of
some of the annoying highlighting for t-m mode by accepting to explicitly
activate the region whenever they want to use active-region operations. The
change would be to simply not let C-SPC activate the region. 

This would be, I think, for users who are midway between the two groups
mentioned - users who would like some of the advantages of each approach:

1. They would get the active/inactive distinction of today's t-m mode, for
things such as `query-replace'. But they would have to do something (e.g.
C-x C-x once or twice) to activate the region first for that.

2. They would not get the annoyance of so much highlighting, because the
region would not be activated automatically by C-SPC. They would get the
active region and its highlighting only on demand.

3. Such users would likely set `mark-even-if-inactive' = t, so they could
still use the region without activating it. They would not need or care to
see it highlighted for the simple operations. (And they could always
activate it whenever they did care.)

I didn't state it as part of my suggestion, but I think now that it would be
desirable for this behavior to be optional. You would set a new option
`set-mark-activates-region-flag' to nil, to stop C-SPC from activating the
mark.

> > FWIW, I have `mark-even-if-inactive' = t, which means I can 
> > always use the region, but I can see when it is active
> > (highlighting). 
> 
> I've now become thoroughly confused as to what an "active" 
> region is.  If `mark-even-if-inactive' is t, I think
> "active" has become equivalent to "highlit".
> Somebody please unconfuse me as appropriate!

They are not equivalent, but only the active region is highlighted, and it
is always highlighted. The important distinction for activation, IMO, is the
difference in behavior of some commands, such as `query-replace'. But yes,
highlighting is also an important attribute of the active region. 

HTH. But be prepared for another, counter opinion from some quarter. ;-)





  reply	other threads:[~2008-02-21  9:43 UTC|newest]

Thread overview: 274+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-28  7:48 change cursor type when idle Drew Adams
2006-08-28  9:54 ` Kim F. Storm
2006-08-28 15:00   ` Drew Adams
2006-08-28 15:30     ` Lennart Borgman
2006-08-28 16:08       ` David Hansen
2006-08-28 16:09       ` Drew Adams
2006-08-28 16:21         ` Lennart Borgman
2006-08-28 16:58           ` Drew Adams
2006-08-28 21:27             ` Juri Linkov
2006-08-28 23:13               ` Drew Adams
2006-08-29 20:27                 ` Juri Linkov
2006-08-29 20:51                   ` Drew Adams
2006-08-29 13:51               ` Mathias Dahl
2006-08-29 13:59                 ` Drew Adams
2006-08-29 20:17                   ` Kevin Rodgers
2006-08-28 21:06       ` Kim F. Storm
2006-08-28 21:44   ` Kim F. Storm
2006-08-29  1:18     ` Luc Teirlinck
2006-08-29  7:44       ` Kim F. Storm
2006-08-29 13:38         ` Drew Adams
2006-08-28 22:10 ` Richard Stallman
2007-07-01 20:24   ` Drew Adams
2007-07-02 19:47     ` Richard Stallman
2008-02-11  7:48     ` Drew Adams
2008-02-11 10:11       ` Thien-Thi Nguyen
2008-02-13  0:25         ` Richard Stallman
2008-02-11 21:10       ` Richard Stallman
2008-02-12 14:30         ` Dan Nicolaescu
2008-02-12 14:43           ` Juanma Barranquero
2008-02-12 15:10             ` Dan Nicolaescu
2008-02-12 15:23               ` Juanma Barranquero
2008-02-12 16:20                 ` Dan Nicolaescu
2008-02-12 16:28                   ` Juanma Barranquero
2008-02-12 16:43                     ` Dan Nicolaescu
2008-02-12 17:12                       ` Juanma Barranquero
2008-02-12 18:07                         ` Dan Nicolaescu
2008-02-12 18:20                           ` Juanma Barranquero
2008-02-12 18:34                             ` Drew Adams
2008-02-12 19:34                               ` Juri Linkov
2008-02-12 21:45                               ` Juri Linkov
2008-02-12 18:44                             ` Dan Nicolaescu
2008-02-12 20:54                               ` Juanma Barranquero
2008-02-12 15:19           ` Drew Adams
2008-02-12 15:35             ` Juanma Barranquero
2008-02-12 16:11             ` Dan Nicolaescu
2008-02-12 16:21               ` Juanma Barranquero
2008-02-12 16:27                 ` David Kastrup
2008-02-12 16:36                   ` Juanma Barranquero
2008-02-12 16:55                 ` Dan Nicolaescu
2008-02-12 17:14                   ` Juanma Barranquero
2008-02-12 17:45             ` Richard Stallman
2008-02-13 11:52               ` Kim F. Storm
2008-02-13 15:45                 ` Stefan Monnier
2008-02-13 16:04                   ` CUA-mode features and documenation (was: Re: change cursor type when idle) Kim F. Storm
2008-02-13 16:23                     ` Dan Nicolaescu
2008-02-13 22:45                       ` CUA-mode features and documenation Juri Linkov
2008-02-13 22:59                         ` Dan Nicolaescu
2008-02-13 23:18                         ` Miles Bader
2008-02-14  0:01                           ` Juri Linkov
2008-02-14  0:50                             ` Miles Bader
2008-02-14  0:58                               ` Lennart Borgman (gmail)
2008-02-14  1:12                                 ` Miles Bader
2008-02-14 18:10                                 ` Richard Stallman
2008-02-15 17:11                                   ` Dan Nicolaescu
2008-02-17 13:22                                     ` Richard Stallman
2008-02-17 18:05                                       ` Drew Adams
2008-02-18 11:40                                         ` Richard Stallman
2008-02-18 13:44                                         ` Kim F. Storm
2008-02-18 15:52                                           ` Drew Adams
2008-02-17 19:51                                       ` Miles Bader
2008-02-17 22:24                                         ` Lennart Borgman (gmail)
2008-02-17 22:30                                           ` Miles Bader
2008-02-18 13:48                                             ` Kim F. Storm
2008-02-17 13:22                                     ` Richard Stallman
2008-02-17 16:58                                       ` Dan Nicolaescu
2008-02-17 18:06                                         ` Drew Adams
2008-02-18 11:40                                         ` Richard Stallman
2008-02-19  8:52                                         ` Enabling Transient Mark Mode by default [Re: CUA-mode features and documenation] Alan Mackenzie
2008-02-19  9:38                                           ` Dan Nicolaescu
2008-02-19 19:01                                             ` Enabling Transient Mark Mode by default Alan Mackenzie
2008-02-19 20:41                                               ` Stefan Monnier
2008-02-19 22:43                                               ` Miles Bader
2008-02-19 23:45                                                 ` Mathias Dahl
2008-02-19 23:49                                                   ` Lennart Borgman (gmail)
2008-02-20  0:12                                                     ` David Kastrup
2008-02-20  0:19                                                       ` Lennart Borgman (gmail)
2008-02-20  0:30                                                         ` David Kastrup
2008-02-20  0:49                                                           ` Lennart Borgman (gmail)
2008-02-20  7:48                                                             ` David Kastrup
2008-02-20  0:16                                                     ` Miles Bader
2008-02-20  3:49                                                     ` Stefan Monnier
2008-02-20  9:56                                                     ` Mathias Dahl
2008-02-20 16:32                                                       ` CUA-*mode (was: Enabling Transient Mark Mode by default) Stefan Monnier
2008-02-20 17:27                                                         ` Mathias Dahl
2008-02-20  8:59                                                 ` Enabling Transient Mark Mode by default Richard Stallman
2008-02-20 12:27                                                   ` Sascha Wilde
2008-02-20 12:52                                                     ` Juanma Barranquero
2008-02-20 13:09                                                       ` David Kastrup
2008-02-20 14:33                                                         ` Juanma Barranquero
2008-02-20 15:11                                                           ` David Kastrup
2008-02-20 15:43                                                             ` Juanma Barranquero
2008-02-20 15:55                                                       ` David Reitter
2008-02-20 16:04                                                         ` Juanma Barranquero
2008-02-20 16:27                                                           ` David Reitter
2008-02-21 15:34                                                             ` Dan Nicolaescu
2008-02-20 16:23                                                         ` David Kastrup
2008-02-21  3:52                                                         ` Provide different sets of .emacs [Was: Enabling Transient Mark Mode by default] William Xu
2008-02-21  4:04                                                           ` Provide different sets of .emacs William Xu
2008-02-20 16:14                                                       ` Enabling Transient Mark Mode by default Mathias Dahl
2008-02-20 16:27                                                         ` David Kastrup
2008-02-20 17:21                                                           ` Mathias Dahl
2008-02-20 17:30                                                             ` David Kastrup
2008-02-20 20:48                                                               ` Mathias Dahl
2008-02-20 21:07                                                                 ` David Kastrup
2008-02-20 16:52                                                     ` Stefan Monnier
2008-02-20 17:00                                                       ` David Kastrup
2008-02-20 17:58                                                         ` Stefan Monnier
2008-02-20 19:30                                                           ` David De La Harpe Golden
2008-02-20 20:09                                                             ` David Kastrup
2008-02-20 20:41                                                               ` David De La Harpe Golden
2008-02-21 17:45                                                                 ` Juri Linkov
2008-02-21 23:01                                                                   ` Lennart Borgman (gmail)
2008-02-21 23:24                                                                     ` Lennart Borgman (gmail)
2008-02-22  3:18                                                                   ` Miles Bader
     [not found]                                                                     ` <8e24944a0802212139r2bae3597ke49c5c6da65da445@mail.gmail.com>
2008-02-22  5:49                                                                       ` Fwd: " David De La Harpe Golden
2008-02-22 22:57                                                                     ` Richard Stallman
2008-02-23  0:09                                                                       ` Miles Bader
2008-02-23  0:31                                                                         ` Mike Mattie
2008-02-23  1:02                                                                           ` Drew Adams
2008-02-23  1:20                                                                         ` Bastien
2008-02-23  9:16                                                                           ` Sascha Wilde
2008-02-23  1:17                                                                       ` Bastien
2008-02-23  5:16                                                                         ` Stefan Monnier
2008-02-23 10:30                                                                           ` Bastien
2008-02-23 19:29                                                                         ` Richard Stallman
2008-02-20 21:44                                                           ` Lennart Borgman (gmail)
2008-02-21  9:16                                                             ` Richard Stallman
2008-02-21  9:16                                                           ` Richard Stallman
2008-02-21 14:31                                                             ` Stefan Monnier
2008-02-22 10:47                                                               ` Bastien
2008-02-22 13:11                                                                 ` Sascha Wilde
2008-02-22 14:16                                                                   ` Bastien Guerry
2008-02-22 14:48                                                                     ` David De La Harpe Golden
2008-02-22 18:06                                                                       ` Bastien
2008-02-22 15:53                                                                     ` Sascha Wilde
2008-02-22 18:12                                                                       ` Bastien
2008-02-22 22:20                                                                         ` Mike Mattie
2008-02-22 23:09                                                                         ` Mike Mattie
2008-02-23 19:28                                                                         ` Richard Stallman
2008-02-22 14:57                                                                 ` Andreas Schwab
2008-02-22 16:27                                                                 ` Leo
2008-02-22 22:57                                                                 ` Richard Stallman
2008-02-21 22:28                                                           ` Richard Stallman
2008-02-20 17:35                                                       ` Sascha Wilde
2008-02-20 18:04                                                         ` Lennart Borgman (gmail)
2008-02-20 19:02                                                         ` Evans Winner
2008-02-20 21:13                                                           ` Jason Earl
2008-02-20 21:24                                                             ` David Kastrup
2008-02-20 22:46                                                               ` David De La Harpe Golden
2008-02-21  7:30                                                                 ` martin rudalics
2008-02-21 22:29                                                                   ` scroll-restore.el Richard Stallman
2008-02-22 16:11                                                                     ` scroll-restore.el David De La Harpe Golden
2008-02-22 19:32                                                                       ` scroll-restore.el martin rudalics
2008-02-22 19:41                                                                         ` scroll-restore.el David De La Harpe Golden
2008-02-22 19:51                                                                           ` scroll-restore.el martin rudalics
2008-02-22 19:26                                                                     ` scroll-restore.el martin rudalics
2008-02-20 23:15                                                               ` Enabling Transient Mark Mode by default Jason Earl
2008-02-20 23:30                                                                 ` David Kastrup
2008-02-21  0:42                                                                   ` Jason Earl
2008-02-21  9:57                                                                     ` David Kastrup
2008-02-21 14:36                                                                       ` Stefan Monnier
2008-02-21 14:41                                                                         ` David Kastrup
2008-02-21 16:13                                                                           ` Stefan Monnier
2008-02-21 16:26                                                                             ` David Kastrup
2008-02-21 17:18                                                                               ` Stefan Monnier
2008-02-21 17:38                                                                                 ` David De La Harpe Golden
2008-02-21 17:52                                                                                   ` David De La Harpe Golden
2008-02-21 21:45                                                                                 ` David Kastrup
2008-02-21 22:24                                                                                   ` Miles Bader
2008-02-21 17:27                                                                             ` Drew Adams
2008-02-21 22:25                                                                               ` Miles Bader
2008-02-21 22:59                                                                                 ` Lennart Borgman (gmail)
2008-02-21 23:17                                                                                   ` Miles Bader
2008-02-21 23:22                                                                                     ` Lennart Borgman (gmail)
2008-02-21 23:39                                                                                       ` Mathias Dahl
2008-02-21 23:45                                                                                         ` Lennart Borgman (gmail)
2008-02-21 23:10                                                                                 ` Drew Adams
2008-02-22 10:07                                                                                 ` Andreas Schwab
2008-02-22 12:19                                                                                   ` Tassilo Horn
2008-02-22 12:28                                                                                     ` David Kastrup
2008-02-22 22:57                                                                                       ` Richard Stallman
2008-02-22 23:14                                                                                         ` Stefan Monnier
2008-02-23  0:03                                                                                           ` Miles Bader
2008-02-23  0:14                                                                                             ` Lennart Borgman (gmail)
2008-02-23  8:04                                                                                             ` Mathias Dahl
2008-02-23  0:04                                                                                         ` Miles Bader
2008-02-23 19:29                                                                                           ` Richard Stallman
2008-02-23  0:14                                                                                         ` Stephen J. Turnbull
2008-02-23  0:21                                                                                           ` Miles Bader
2008-02-23  0:46                                                                                           ` Should M-SPC respect `sentence-end-double-space'? Stephen J. Turnbull
2008-02-23  0:46                                                                                             ` Paul Pogonyshev
2008-02-23  3:23                                                                                               ` Stephen J. Turnbull
2008-02-23  0:52                                                                                             ` Miles Bader
2008-02-23  3:11                                                                                               ` Stephen J. Turnbull
2008-02-23  3:47                                                                                                 ` Miles Bader
2008-02-23  8:33                                                                                                   ` Stephen J. Turnbull
2008-02-23 15:47                                                                                                     ` Stefan Monnier
2008-02-23 17:01                                                                                               ` Juri Linkov
2008-02-21 22:28                                                                   ` Enabling Transient Mark Mode by default Richard Stallman
2008-03-01 22:15                                                                     ` Glenn Morris
2008-03-01 22:40                                                                       ` Kim F. Storm
2008-03-02  2:56                                                                       ` Juri Linkov
2008-03-02 17:25                                                                         ` Richard Stallman
2008-03-02  5:51                                                                       ` Stefan Monnier
2008-03-02 16:09                                                                         ` Juri Linkov
2008-03-02 17:25                                                                       ` Richard Stallman
2008-02-21  9:16                                                           ` Richard Stallman
2008-02-21 12:07                                                             ` Robert J. Chassell
2008-02-20 21:15                                                         ` Stephen J. Turnbull
2008-02-21  9:16                                                           ` Richard Stallman
2008-02-21 15:55                                                             ` Luc Teirlinck
2008-02-22  3:31                                                             ` Stephen J. Turnbull
2008-02-22 22:57                                                               ` Richard Stallman
2008-02-23  0:08                                                                 ` Stephen J. Turnbull
2008-02-21 22:27                                                         ` Richard Stallman
2008-02-20 19:09                                                       ` Drew Adams
2008-02-21  0:10                                                         ` Miles Bader
2008-02-21 22:28                                                           ` Richard Stallman
2008-02-23 11:00                                                           ` Alan Mackenzie
2008-02-20 20:01                                                       ` Tentative diagnosis of TMM's problem. [Re: Enabling Transient Mark Mode by default] Alan Mackenzie
2008-02-20 20:52                                                         ` Stefan Monnier
2008-02-20 22:16                                                           ` Tentative diagnosis of TMM's problem. [Re: Enabling TransientMark " Drew Adams
2008-02-20 22:32                                                             ` Lennart Borgman (gmail)
2008-02-20 22:45                                                               ` Drew Adams
2008-02-21  1:09                                                                 ` David De La Harpe Golden
2008-02-21  1:44                                                                   ` Drew Adams
2008-02-21  8:05                                                               ` Sven Joachim
2008-02-21  0:13                                                             ` Miles Bader
2008-02-21  1:44                                                               ` Drew Adams
2008-02-21  4:56                                                                 ` David De La Harpe Golden
2008-02-21 22:28                                                                 ` Richard Stallman
2008-02-21 17:46                                                               ` Juri Linkov
2008-02-21 22:28                                                               ` Tentative diagnosis of Transient Mark mode's " Richard Stallman
2008-02-21  8:19                                                             ` Tentative diagnosis of TMM's " Alan Mackenzie
2008-02-21  9:43                                                               ` Drew Adams [this message]
2008-02-21 10:54                                                                 ` Tentative diagnosis of TMM's problem. [Re: Enabling TransientMarkMode " David Kastrup
2008-02-21 17:10                                                                   ` Drew Adams
2008-02-21 19:28                                                                     ` Sascha Wilde
2008-02-21 21:42                                                                     ` David Kastrup
2008-02-22 11:58                                                                     ` Enabling Transient Mark Mode by default Robert J. Chassell
2008-02-22 14:49                                                                       ` David De La Harpe Golden
2008-02-22 16:37                                                                       ` Stefan Monnier
2008-02-21 10:59                                                                 ` Tentative diagnosis of TMM's problem. [Re: Enabling TransientMarkMode by default] Andreas Schwab
2008-02-21 16:55                                                                   ` Drew Adams
2008-02-21 22:29                                                                 ` Richard Stallman
2008-02-21  8:05                                                           ` Tentative diagnosis of TMM's problem. [Re: Enabling Transient Mark Mode " Alan Mackenzie
2008-02-21 14:54                                                             ` Stefan Monnier
2008-02-21 17:44                                                           ` Tentative diagnosis of TMM's problem Johan Bockgård
2008-02-21 19:21                                                             ` Stefan Monnier
2008-02-21 22:38                                                               ` Johan Bockgård
2008-02-22  1:51                                                                 ` Stefan Monnier
2008-02-21  9:16                                                         ` Tentative diagnosis of TMM's problem. [Re: Enabling Transient Mark Mode by default] Richard Stallman
2008-02-23 11:34                                                           ` Alan Mackenzie
2008-02-24  0:53                                                             ` Richard Stallman
2008-02-20 21:27                                                       ` Enabling Transient Mark Mode by default Juri Linkov
2008-02-19  9:48                                           ` Enabling Transient Mark Mode by default [Re: CUA-mode features and documenation] David Kastrup
2008-02-17 18:11                                     ` CUA-mode features and documenation David De La Harpe Golden
2008-02-14  1:54                               ` Leo
2008-02-13 22:00                 ` change cursor type when idle Richard Stallman
2008-02-14 13:16                   ` Kim F. Storm
2008-02-15  0:03                     ` Richard Stallman
2008-02-12 19:31           ` Juri Linkov
2008-02-12 21:23             ` Miles Bader
2008-02-12 21:42               ` Juri Linkov

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='002801c8746e$413695a0$0600a8c0@us.oracle.com' \
    --to=drew.adams@oracle.com \
    --cc=acm@muc.de \
    --cc=dann@ics.uci.edu \
    --cc=emacs-devel@gnu.org \
    --cc=juri@jurta.org \
    --cc=lennart.borgman@gmail.com \
    --cc=miles@gnu.org \
    --cc=monnier@iro.umontreal.ca \
    --cc=rms@gnu.org \
    --cc=storm@cua.dk \
    --cc=wilde@sha-bang.de \
    /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).