From: Mike Kupfer <mkupfer@alum.berkeley.edu>
To: Lars Ingebrigtsen <larsi@gnus.org>
Cc: 35367@debbugs.gnu.org
Subject: bug#35367: 26.2; `dired-copy-how-to-fn' and HOW-TO arg of `dired-create-files'
Date: Wed, 10 Jul 2019 22:51:11 -0700 [thread overview]
Message-ID: <12410.1562824271@alto> (raw)
In-Reply-To: Your message of "Tue, 09 Jul 2019 16:21:24 +0200." <87wogrthjv.fsf@mouse.gnus.org>
Lars Ingebrigtsen wrote:
> Drew Adams <drew.adams@oracle.com> writes:
>
> > 1. I believe `dired-copy-how-to-fn' was added to Emacs quite a while ago
> > (1991[1]).
lisp/ChangeLog.8 in the 25.3 tarball attributes the change to Inge
Frick, with a date of 1999-09-14 (a couple days before the date listed
in bug#25075).
> > But it's not clear to me what it's really for, and there
> > seem to be no uses of it in the distributed Emacs code, apart from
> > `dired-do-copy', which just passes it on to `dired-create-files'.
> > The variable's doc just says to "See HOW-TO argument for
> > `dired-create-files'."
> >
> > So why was this variable created?
Presumably it's so you could override dired's behavior for handling a
target. If the target is a symlink to a directory, the default behavior
would be to treat it as a directory, but maybe there are cases where you
want to replace the link instead.
The bit about
If it return value is a list, TARGET is a generalized
directory (e.g. some sort of archive). The first element of
this list must be a function with at least four arguments:
looks like it might be useful when the target is, for example, a tar
file. By default, copying a single file would replace the tar file.
But this could be overridden (I think) to add or replace entries in the
tar file.
Besides the possibility of a user setting dired-copy-how-to-fn, I can
imagine a package might want to dynamically rebind dired-copy-how-to-fn,
perhaps as a buffer-local variable in a dired buffer. (I'm not sure
what sort of package might want to do that, but it seems like a possible
reason for having a variable.)
> I hoped that the code might throw some light on this variable, but:
>
> (defun dired-into-dir-with-symlinks (target)
> (and (file-directory-p target)
> (not (file-symlink-p target))))
> ;; This may not always be what you want, especially if target is your
> ;; home directory and it happens to be a symbolic link, as is often the
> ;; case with NFS and automounters. Or if you want to make symlinks
> ;; into directories that themselves are only symlinks, also quite
> ;; common.
>
> ;; So we don't use this function as value for HOW-TO in
> ;; dired-do-symlink, which has the minor disadvantage of
> ;; making links *into* a symlinked-dir, when you really wanted to
> ;; *overwrite* that symlink. In that (rare, I guess) case, you'll
> ;; just have to remove that symlink by hand before making your marked
> ;; symlinks.
>
> (defvar dired-copy-how-to-fn nil
> "Either nil or a function used by `dired-do-copy' to determine target.
> See HOW-TO argument for `dired-do-create-files'.")
>
> It's still clear as mud to me.
dired-into-dir-with-symlinks returns t if TARGET is a real directory.
It returns nil if TARGET is a plain file or a symlink to a directory.
The first generation automounter(s) mounted your home directory in a
temporary directory and then created a symlink to the mounted directory.
But $HOME would be the path to the symlink.
> My interpretation of t is that all files you copy will up in the same
> file if it's t, which is a supremely useless thing, you'd think...
No, you can only copy one file if the target is a plain file. From
earlier in the docstring for dired-do-create-files:
The target may also be a non-directory file, if only
one file is marked.
Maybe this sentence should be deleted:
Otherwise, the target is a plain file;
an error is raised unless there is exactly one marked file.
The way the docstring is currently written, it seems to imply that the
error only gets raised in the case where HOW-TO is nil.
I agree that this is all very complicated and confusing. It doesn't
help that if HOW-TO is t, the target is treated as a plain file. But if
HOW-TO is a function, it returns nil to indicate a plain file.
mike
next prev parent reply other threads:[~2019-07-11 5:51 UTC|newest]
Thread overview: 838+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-21 19:30 bug#35367: 26.2; `dired-copy-how-to-fn' and HOW-TO arg of `dired-create-files' Drew Adams
2019-07-09 14:21 ` Lars Ingebrigtsen
2019-07-11 5:51 ` Mike Kupfer [this message]
2019-07-11 14:04 ` Lars Ingebrigtsen
2019-07-11 14:18 ` Drew Adams
2019-07-12 3:20 ` Mike Kupfer
2019-07-12 3:33 ` Drew Adams
2022-01-22 14:43 ` Lars Ingebrigtsen
-- strict thread matches above, loose matches on Subject: below --
2020-11-01 16:08 bounds-of-thing-at-point for paragraphs Christopher Dimech
2020-11-01 18:22 ` Jean Louis
2020-11-01 18:34 ` Christopher Dimech
2020-11-01 18:45 ` Drew Adams
2020-11-01 18:52 ` Jean Louis
2020-11-01 19:00 ` Drew Adams
2020-11-01 20:07 ` Christopher Dimech
2020-11-01 22:06 ` Drew Adams
2020-11-01 22:36 ` Christopher Dimech
2020-11-01 22:47 ` Jean Louis
2020-11-01 22:52 ` Drew Adams
2020-11-01 23:14 ` Christopher Dimech
2020-11-02 1:07 ` Drew Adams
2020-11-02 4:09 ` Robert Thorpe
2020-11-02 15:41 ` Drew Adams
2020-11-03 6:00 ` Corwin Brust
2020-11-03 6:40 ` Stefan Kangas
2020-11-03 7:41 ` Corwin Brust
2020-11-03 16:07 ` Drew Adams
2020-11-06 23:45 ` Corwin Brust
2020-11-07 1:26 ` Stefan Kangas
2020-11-02 6:07 ` finder-commentary Jean Louis
2020-11-02 15:48 ` finder-commentary Drew Adams
2020-11-02 16:02 ` finder-commentary Drew Adams
2020-11-02 16:58 ` finder-commentary Jean Louis
2020-11-02 17:27 ` finder-commentary Drew Adams
2020-11-01 22:49 ` RE: RE: bounds-of-thing-at-point for paragraphs Jean Louis
2020-11-01 22:51 ` Drew Adams
2020-11-01 23:10 ` Christopher Dimech
2020-11-02 1:05 ` Drew Adams
2020-11-01 20:36 ` Jean Louis
2020-11-01 21:32 ` Michael Heerdegen
2020-11-01 21:43 ` Jean Louis
2020-11-01 21:43 ` Jean Louis
2020-11-01 19:27 ` Eli Zaretskii
2020-11-01 19:51 ` Christopher Dimech
2020-11-01 20:00 ` Eli Zaretskii
2020-11-01 20:09 ` Christopher Dimech
2020-11-01 20:13 ` Eli Zaretskii
2020-11-01 20:27 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01 20:31 ` Christopher Dimech
2020-11-01 22:10 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-11-01 21:46 ` Drew Adams
2020-11-01 20:23 ` Michael Heerdegen
2020-11-01 20:29 ` Christopher Dimech
2020-11-01 22:10 ` Drew Adams
2020-11-01 21:01 ` Stefan Monnier
2020-11-01 18:45 ` Jean Louis
2020-11-01 18:51 ` Drew Adams
2020-10-08 15:30 Proposal for an Emacs User Survey Adrien Brochard
2020-10-08 17:27 ` Philip K.
2020-10-08 17:45 ` Adrien Brochard
2020-10-09 11:30 ` Philip K.
2020-10-09 14:37 ` tomas
2020-10-09 17:23 ` Adrien Brochard
2020-10-09 18:17 ` Philip K.
2020-10-09 19:52 ` Adrien Brochard
2020-10-10 3:56 ` Richard Stallman
2020-10-10 9:36 ` Philip K.
2020-10-10 16:33 ` Drew Adams
2020-10-10 18:02 ` Dmitry Gutov
2020-10-11 10:46 ` Jean Louis
2020-10-11 18:42 ` Philip K.
2020-10-11 19:46 ` Jean Louis
2020-10-11 1:00 ` Drew Adams
2020-10-10 10:35 ` Philip K.
2020-10-11 5:24 ` Richard Stallman
2020-10-11 17:59 ` Philip K.
2020-10-12 2:03 ` Richard Stallman
2020-10-11 7:31 ` Tomas Hlavaty
2020-10-11 12:04 ` Jean Louis
2020-10-11 17:47 ` Philip K.
2020-10-09 17:59 ` Jean Louis
2020-10-09 0:41 ` Karl Fogel
2020-10-09 1:26 ` Adrien Brochard
2020-10-10 3:52 ` Richard Stallman
2020-10-10 21:44 ` Dmitry Gutov
2020-10-12 2:04 ` Richard Stallman
2020-10-09 3:35 ` Richard Stallman
2020-10-09 18:01 ` Jean Louis
2020-10-09 23:12 ` Adrien Brochard
2020-10-09 23:31 ` Drew Adams
2020-10-09 23:36 ` Adrien Brochard
2020-10-10 2:21 ` Drew Adams
2020-10-10 2:40 ` Adrien Brochard
2020-10-10 3:53 ` Drew Adams
2020-10-10 8:09 ` Teemu Likonen
2020-10-10 10:45 ` Rasmus
2020-10-11 10:32 ` Jean Louis
2020-10-11 15:15 ` Drew Adams
2020-10-11 18:25 ` Jean Louis
2020-10-11 19:47 ` Drew Adams
2020-10-11 20:36 ` Jean Louis
2020-10-13 3:48 ` How to request changes in Emacs Richard Stallman
2020-10-13 4:59 ` Jean Louis
2020-10-16 4:00 ` Richard Stallman
2020-10-16 4:47 ` Drew Adams
2020-10-13 15:56 ` Drew Adams
2020-10-14 4:42 ` Richard Stallman
2020-10-14 5:12 ` Drew Adams
2020-10-11 20:19 ` Proposal for an Emacs User Survey Drew Adams
2020-10-11 20:42 ` Jean Louis
2020-10-11 18:33 ` Philip K.
2020-10-11 18:45 ` Jean Louis
2020-10-13 3:48 ` Richard Stallman
2020-10-11 19:47 ` Drew Adams
2020-10-11 20:33 ` Jean Louis
2020-10-11 23:24 ` Drew Adams
2020-10-12 4:10 ` Jean Louis
2020-10-12 17:35 ` Drew Adams
2020-10-12 18:33 ` Jean Louis
2020-10-12 18:41 ` Drew Adams
2020-10-11 20:54 ` Jean Louis
2020-10-12 14:32 ` Adrien Brochard
2020-10-10 10:54 ` Thibaut Verron
2020-10-10 13:50 ` Philip K.
2020-10-12 14:36 ` Adrien Brochard
2020-10-11 11:58 ` Jean Louis
2020-10-12 14:36 ` Adrien Brochard
2020-10-10 13:17 ` Rasmus
2020-10-12 14:41 ` Adrien Brochard
2020-10-11 5:23 ` Richard Stallman
2020-10-11 7:35 ` Vasilij Schneidermann
2020-10-11 12:08 ` Jean Louis
2020-10-11 12:50 ` Vasilij Schneidermann
2020-10-11 17:15 ` Jean Louis
2020-10-11 17:36 ` Thibaut Verron
2020-10-11 18:13 ` Brett Gilio
2020-10-11 18:27 ` Thibaut Verron
2020-10-11 18:44 ` Jean Louis
2020-10-11 18:58 ` Thibaut Verron
2020-10-11 20:12 ` Jean Louis
2020-10-11 18:34 ` Jean Louis
2020-10-11 19:15 ` Thibaut Verron
2020-10-11 19:22 ` Qiantan Hong
2020-10-13 3:47 ` Richard Stallman
2020-10-11 20:26 ` Jean Louis
2020-10-12 2:04 ` Richard Stallman
2020-10-12 3:32 ` Thibaut Verron
2020-10-12 5:04 ` Jean Louis
2020-10-12 5:33 ` Thibaut Verron
2020-10-12 6:29 ` Jean Louis
2020-10-12 6:58 ` Thibaut Verron
2020-10-12 8:16 ` Jean Louis
2020-10-12 8:37 ` Thibaut Verron
2020-10-12 14:09 ` Jean Louis
2020-10-12 7:54 ` Ihor Radchenko
2020-10-12 8:34 ` Jean Louis
2020-10-12 8:54 ` Ihor Radchenko
2020-10-12 16:36 ` Jean Louis
2020-10-13 3:53 ` Richard Stallman
2020-10-13 5:25 ` Jean Louis
2020-10-15 3:59 ` Richard Stallman
2020-10-15 5:19 ` Jean Louis
2020-10-13 3:53 ` Richard Stallman
2020-10-13 5:27 ` Jean Louis
2020-10-16 3:59 ` Richard Stallman
2020-10-16 6:02 ` Marcel Ventosa
2020-10-16 6:52 ` Thibaut Verron
2020-10-16 7:24 ` Marcel Ventosa
2020-10-16 7:53 ` Thibaut Verron
2020-10-16 8:25 ` Marcel Ventosa
2020-10-16 12:17 ` Dmitry Gutov
2020-10-16 13:45 ` Marcel Ventosa
2020-10-16 14:04 ` Dmitry Gutov
2020-10-16 14:33 ` Marcel Ventosa
2020-10-16 14:58 ` Thibaut Verron
2020-10-16 15:51 ` Alfred M. Szmidt
2020-10-16 16:10 ` Thibaut Verron
2020-10-16 16:16 ` Alfred M. Szmidt
2020-10-16 16:32 ` Thibaut Verron
2020-10-16 16:50 ` Alfred M. Szmidt
2020-10-16 17:16 ` Thibaut Verron
2020-10-16 17:32 ` Alfred M. Szmidt
2020-10-16 17:55 ` Thibaut Verron
2020-10-16 18:16 ` Alfred M. Szmidt
2020-10-17 4:20 ` Richard Stallman
2020-10-17 4:50 ` Thibaut Verron
2020-10-17 5:44 ` Jean Louis
2020-10-17 6:42 ` Thibaut Verron
2020-10-17 7:52 ` Jean Louis
2020-10-18 4:16 ` Richard Stallman
2020-10-18 5:49 ` Jean Louis
2020-10-18 4:16 ` Richard Stallman
2020-10-18 5:52 ` Jean Louis
2020-10-18 4:16 ` Richard Stallman
2020-10-18 8:36 ` Thibaut Verron
2020-10-20 5:10 ` Richard Stallman
2020-10-17 9:42 ` Yuri Khan
2020-10-16 15:36 ` Ergus
2020-10-16 19:08 ` Dmitry Gutov
2020-10-16 19:52 ` Jean Louis
2020-10-16 20:16 ` Dmitry Gutov
2020-10-16 20:17 ` Alfred M. Szmidt
2020-10-17 11:40 ` Marcel Ventosa
2020-10-17 19:51 ` Dmitry Gutov
2020-10-17 21:38 ` Alfred M. Szmidt
2020-10-18 2:58 ` Marcel Ventosa
2020-10-16 19:22 ` Jean Louis
2020-10-16 19:17 ` Jean Louis
2020-10-16 19:36 ` Dmitry Gutov
2020-10-16 19:43 ` Dmitry Gutov
2020-10-16 20:03 ` Jean Louis
2020-10-16 20:29 ` Thibaut Verron
2020-10-16 20:40 ` Jean Louis
2020-10-17 4:19 ` Richard Stallman
2020-10-17 5:02 ` Thibaut Verron
2020-10-17 13:13 ` Stefan Monnier
2020-10-17 5:07 ` Jean Louis
2020-10-17 12:34 ` Andy Moreton
2020-10-17 15:56 ` Alfred M. Szmidt
2020-10-17 16:13 ` Eli Zaretskii
2020-10-17 21:38 ` Alfred M. Szmidt
2020-10-18 2:40 ` Eli Zaretskii
2020-10-18 4:13 ` Richard Stallman
2020-10-18 15:20 ` Alfred M. Szmidt
2020-10-16 21:10 ` Dmitry Gutov
2020-10-16 22:02 ` Jean Louis
2020-10-16 19:08 ` Jean Louis
2020-10-16 19:47 ` Drew Adams
2020-10-16 20:15 ` Jean Louis
2020-10-16 20:59 ` Drew Adams
2020-10-16 21:50 ` Jean Louis
2020-10-17 4:19 ` Richard Stallman
2020-10-17 4:19 ` Richard Stallman
2020-10-16 13:57 ` Ergus
2020-10-16 15:31 ` Eli Zaretskii
2020-10-16 19:11 ` Jean Louis
2020-10-16 16:09 ` Alfred M. Szmidt
2020-10-16 17:29 ` Jean Louis
2020-10-16 19:11 ` Thibaut Verron
2020-10-16 19:54 ` Jean Louis
2020-10-16 20:20 ` Thibaut Verron
2020-10-17 4:22 ` Richard Stallman
2020-10-17 4:31 ` Qiantan Hong
2020-10-19 10:12 ` Robert Pluim
2020-10-19 16:15 ` Qiantan Hong
2020-10-20 13:45 ` Dmitry Gutov
2020-10-16 18:57 ` Jean Louis
2020-10-16 17:08 ` Jean Louis
2020-10-16 17:04 ` Jean Louis
2020-10-16 17:39 ` Vasilij Schneidermann
2020-10-18 4:09 ` Richard Stallman
2020-10-16 16:33 ` MELPA issues - " Jean Louis
2020-10-16 18:09 ` Dmitry Gutov
2020-10-16 22:00 ` Qiantan Hong
2020-10-16 22:08 ` Dmitry Gutov
2020-10-17 4:18 ` Richard Stallman
2020-10-17 4:59 ` chad
2020-10-17 5:05 ` Qiantan Hong
2020-10-17 5:06 ` Thibaut Verron
2020-10-17 2:59 ` Marcel Ventosa
2020-10-18 4:12 ` Richard Stallman
2020-10-18 5:16 ` Jean Louis
2020-10-18 4:10 ` Richard Stallman
2020-10-18 7:51 ` Marcel Ventosa
2020-10-18 9:29 ` Dmitry Gutov
2020-10-18 9:36 ` Jean Louis
2020-10-18 8:57 ` Thibaut Verron
2020-10-19 3:44 ` Richard Stallman
2020-10-18 15:57 ` Philip K.
2020-10-19 3:48 ` Richard Stallman
2020-10-19 11:36 ` Dmitry Gutov
2020-10-19 12:43 ` Proposal to include obligatory PGP verification of packages from any repository Jean Louis
2020-10-19 15:55 ` Stefan Kangas
2020-10-19 16:38 ` Jean Louis
2020-10-19 17:30 ` Stefan Monnier
2020-10-19 17:47 ` Jean Louis
2020-10-19 18:02 ` Stefan Monnier
2020-10-19 19:04 ` Jean Louis
2020-10-19 20:17 ` Stefan Monnier
2020-10-19 21:02 ` Jean Louis
[not found] ` <jwvft69evmy.fsf-monnier+emacs@gnu.org>
2020-10-20 7:40 ` Jean Louis
2020-10-22 21:25 ` Stefan Monnier
2020-10-23 9:17 ` Jean Louis
2020-10-23 14:52 ` Stefan Monnier
2020-10-23 16:59 ` Jean Louis
2020-10-23 18:25 ` Stefan Monnier
2020-10-24 6:26 ` Jean Louis
2020-10-24 15:29 ` Stefan Monnier
2020-10-19 18:53 ` Stefan Kangas
2020-10-19 18:57 ` Vasilij Schneidermann
2020-10-19 19:20 ` Stefan Monnier
2020-10-19 18:28 ` Vasilij Schneidermann
2020-10-19 19:00 ` ELPA security (was: Proposal to include obligatory PGP verification of packages from any repository) Stefan Monnier
2020-10-19 19:50 ` Proposal to include obligatory PGP verification of packages from any repository Jean Louis
2020-10-20 5:17 ` Richard Stallman
2020-10-20 5:52 ` Stefan Monnier
2020-10-21 4:46 ` Richard Stallman
2020-10-20 16:17 ` Vasilij Schneidermann
2020-10-19 15:46 ` Proposal for an Emacs User Survey Drew Adams
2020-10-19 16:42 ` Jean Louis
2020-10-20 5:19 ` Richard Stallman
2020-10-19 16:42 ` Thibaut Verron
2020-10-19 16:53 ` Drew Adams
2020-10-20 5:14 ` Richard Stallman
2020-10-20 10:47 ` Dmitry Gutov
2020-10-16 7:05 ` Thibaut Verron
2020-10-16 13:23 ` Philip K.
2020-10-16 18:46 ` Jean Louis
2020-10-17 4:22 ` Richard Stallman
2020-10-15 3:52 ` Richard Stallman
2020-10-15 5:57 ` Thibaut Verron
2020-10-12 5:36 ` Jean Louis
2020-10-12 5:52 ` Thibaut Verron
2020-10-12 2:04 ` Richard Stallman
2020-10-12 2:04 ` Richard Stallman
2020-10-12 15:16 ` Adrien Brochard
2020-10-12 16:55 ` Jean Louis
2020-10-12 17:15 ` Drew Adams
2020-10-13 3:49 ` Richard Stallman
2020-10-11 20:54 ` Bonface M. K.
2020-10-16 13:30 ` Philip K.
2020-10-19 16:20 ` Philip K.
2020-10-19 19:44 ` Dmitry Gutov
2020-10-20 5:19 ` Richard Stallman
2020-10-20 8:22 ` Thibaut Verron
2020-10-20 9:48 ` Jean Louis
2020-10-20 11:03 ` Thibaut Verron
2020-10-20 11:38 ` Jean Louis
2020-10-26 17:43 ` Teemu Likonen
2020-10-26 19:36 ` Jean Louis
2020-10-26 19:58 ` Jean Louis
2020-10-27 3:44 ` Richard Stallman
2020-10-26 18:13 ` Ivan Yonchovski
2020-10-26 20:21 ` Jean Louis
[not found] <<fdimdgyaxf.fsf@norden.tntech.edu>
[not found] ` <<83r1s4ftc7.fsf@gnu.org>
2020-08-18 16:13 ` Delete variables obsolete since Emacs 23 Drew Adams
2020-08-18 19:27 ` Stefan Monnier
2020-08-18 20:21 ` Drew Adams
2020-08-18 21:00 ` Gregory Heytings via Emacs development discussions.
2020-08-18 21:55 ` Stefan Monnier
2020-08-18 21:30 ` Jeff Norden
2020-07-30 4:01 bug#42611: 26.3; edit-abbrevs lets me type and commit, but doesn't store anywhere and abbrevs don't work Brett Randall
[not found] ` <handler.42611.B.159608273314264.ack@debbugs.gnu.org>
[not found] ` <(Brett>
2020-10-17 8:41 ` Lars Ingebrigtsen
2020-10-27 10:36 ` brett.randall
[not found] ` <(brett>
[not found] ` <randall's>
[not found] ` <"Tue,>
2020-10-27 10:43 ` Lars Ingebrigtsen
2020-10-27 10:49 ` Brett Randall
2020-10-27 11:08 ` Lars Ingebrigtsen
[not found] ` <(Lars>
[not found] ` <Ingebrigtsen's>
[not found] ` <12:08:50>
2020-10-27 11:19 ` bug#42611: (no subject) Lars Ingebrigtsen
[not found] ` <877drbhq6c.fsf@gnus.org>
[not found] ` <handler.42611.C.160379757411378.notifdonectrl.0@debbugs.gnu.org>
2020-10-27 22:22 ` bug#42611: 26.3; edit-abbrevs lets me type and commit, but doesn't store anywhere and abbrevs don't work Brett Randall
2020-05-21 16:56 bug#41438: [PATCH] Allow windmove keys to be bound without prefix or modifiers Philip K.
2020-05-21 22:18 ` Juri Linkov
2020-05-22 18:26 ` Philip K.
2020-05-22 18:26 ` Philip K.
2020-05-22 19:15 ` Drew Adams
2020-05-23 22:12 ` Juri Linkov
2020-06-26 19:46 ` Philip K.
2020-06-27 23:53 ` Juri Linkov
2020-06-28 8:30 ` Philip K.
2020-06-28 23:37 ` Juri Linkov
2020-08-05 18:05 ` Lars Ingebrigtsen
2020-08-05 23:40 ` Juri Linkov
2020-08-06 9:28 ` Philip K.
2020-08-06 23:43 ` Juri Linkov
2020-08-07 10:53 ` Philip K.
2020-08-08 23:54 ` Juri Linkov
2021-05-12 20:38 ` Lars Ingebrigtsen
2021-05-12 21:27 ` Philip Kaludercic
2021-05-22 20:29 ` Philip Kaludercic
2021-05-22 21:09 ` Philip Kaludercic
2021-05-23 6:49 ` Eli Zaretskii
2021-05-23 12:36 ` Philip Kaludercic
2021-05-25 5:12 ` Lars Ingebrigtsen
2021-05-25 7:25 ` Philip Kaludercic
2021-05-25 9:53 ` Philip Kaludercic
2021-05-25 11:16 ` Arthur Miller
2021-05-25 11:42 ` Philip Kaludercic
2021-05-25 13:31 ` Arthur Miller
2021-05-25 14:39 ` Philip Kaludercic
2021-05-25 11:36 ` Arthur Miller
2021-05-25 11:46 ` Philip Kaludercic
2021-05-25 13:58 ` Arthur Miller
2021-05-25 19:13 ` Lars Ingebrigtsen
2021-05-25 19:16 ` Lars Ingebrigtsen
2021-05-25 19:25 ` Philip Kaludercic
2021-05-25 20:18 ` Juri Linkov
2021-05-25 21:45 ` Philip Kaludercic
2021-05-26 21:35 ` Juri Linkov
2021-05-27 11:09 ` Philip Kaludercic
2021-05-30 22:11 ` Juri Linkov
2021-05-31 8:50 ` Philip Kaludercic
2021-05-31 20:15 ` Juri Linkov
2021-05-31 21:27 ` Philip Kaludercic
2021-06-03 20:36 ` Juri Linkov
[not found] <20200515175844.18941.61355@vcs0.savannah.gnu.org>
[not found] ` <20200515175845.997EC20999@vcs0.savannah.gnu.org>
2020-05-15 18:38 ` Deleting old `:version` from defcustoms (was: master b76cdd0: Delete libraries obsolete since 23.1 and 23.2) Stefan Monnier
2020-05-15 20:58 ` Stefan Kangas
2020-08-07 15:42 ` [PATCH] Remove obsolete fast-lock and lazy-lock libraries (was: Re: Deleting old `:version` from defcustoms) Stefan Kangas
2020-08-08 2:19 ` [PATCH] Remove obsolete fast-lock and lazy-lock libraries Stefan Monnier
2020-05-16 13:18 ` Delete variables obsolete since Emacs 23 Stefan Kangas
2020-05-16 15:49 ` Paul Eggert
2020-05-17 2:52 ` Stefan Monnier
2020-05-17 11:39 ` Dmitry Gutov
2020-08-08 0:28 ` Stefan Kangas
2020-08-14 11:11 ` Stefan Kangas
2020-08-14 15:42 ` Stefan Kangas
2020-08-14 18:56 ` Drew Adams
2020-08-14 19:00 ` Lars Ingebrigtsen
2020-08-14 19:14 ` Drew Adams
2020-08-14 19:55 ` Ulrich Mueller
2020-08-14 23:37 ` Stefan Kangas
2020-08-15 1:28 ` Drew Adams
2020-08-15 12:51 ` Stefan Monnier
2020-08-15 19:54 ` Drew Adams
2020-08-16 4:13 ` Richard Stallman
2020-08-16 5:30 ` Drew Adams
2020-08-16 13:46 ` Stefan Monnier
2020-08-17 3:23 ` Richard Stallman
2020-08-17 14:20 ` Drew Adams
2020-08-17 14:45 ` Gregory Heytings via Emacs development discussions.
2020-08-18 1:55 ` Jeff Norden
2020-08-18 4:53 ` Eli Zaretskii
2020-08-19 8:31 ` Gregory Heytings via Emacs development discussions.
2020-08-19 13:26 ` Drew Adams
2020-08-19 13:39 ` Stefan Monnier
2020-08-19 13:54 ` Gregory Heytings via Emacs development discussions.
2020-08-19 15:15 ` Eli Zaretskii
2020-08-20 0:33 ` Jeff Norden
2020-08-19 14:36 ` Eli Zaretskii
2020-08-18 16:14 ` Drew Adams
2020-08-18 4:06 ` Richard Stallman
2020-08-18 16:13 ` Drew Adams
2020-08-18 11:17 ` Lars Ingebrigtsen
2020-08-24 2:28 ` Stefan Kangas
2020-08-25 3:46 ` Richard Stallman
2020-08-25 4:06 ` Drew Adams
2020-08-26 1:57 ` Richard Stallman
2020-08-26 8:59 ` Gregory Heytings via Emacs development discussions.
2020-08-26 13:22 ` Stefan Kangas
2020-08-27 2:51 ` Richard Stallman
2020-08-27 3:51 ` Stefan Kangas
2020-08-26 17:39 ` Drew Adams
2020-08-26 18:16 ` Stefan Monnier
2020-09-04 17:04 ` Stefan Kangas
2020-09-05 12:39 ` Lars Ingebrigtsen
2020-09-11 20:01 ` Stefan Kangas
2020-05-17 3:18 ` Deleting old `:version` from defcustoms (was: master b76cdd0: Delete libraries obsolete since 23.1 and 23.2) Stefan Kangas
2020-05-17 15:18 ` Eli Zaretskii
2020-05-17 16:59 ` Deleting old `:version` from defcustoms Stefan Monnier
[not found] <mailman.5042.1543777897.1284.help-gnu-emacs@gnu.org>
2018-12-04 9:04 ` using setq to create lists based on other lists Barry Margolin
2018-12-04 13:56 ` Stefan Monnier
2018-12-05 1:07 ` Robert Thorpe
2018-12-05 2:32 ` Drew Adams
2018-12-05 6:45 ` Jean-Christophe Helary
2018-12-05 8:00 ` Marcin Borkowski
2018-12-05 8:11 ` Jean-Christophe Helary
2018-12-05 14:57 ` Drew Adams
[not found] ` <mailman.5218.1544021892.1284.help-gnu-emacs@gnu.org>
2018-12-05 16:59 ` Barry Margolin
[not found] ` <mailman.5186.1543978155.1284.help-gnu-emacs@gnu.org>
2018-12-05 16:50 ` Barry Margolin
[not found] ` <mailman.5145.1543931778.1284.help-gnu-emacs@gnu.org>
2018-12-05 16:47 ` Barry Margolin
[not found] <mailman.7307.1515801433.27995.help-gnu-emacs@gnu.org>
2018-01-13 0:43 ` info-find-source Emanuel Berg
2018-01-13 3:43 ` info-find-source Robert Thorpe
2018-01-13 5:23 ` info-find-source Marcin Borkowski
2018-01-13 16:31 ` info-find-source Drew Adams
2018-01-14 7:03 ` info-find-source Marcin Borkowski
2018-01-16 23:10 ` info-find-source Drew Adams
2018-01-13 15:50 ` info-find-source Drew Adams
[not found] ` <mailman.7314.1515821013.27995.help-gnu-emacs@gnu.org>
2018-01-14 2:57 ` info-find-source Emanuel Berg
2018-01-14 7:00 ` info-find-source Marcin Borkowski
[not found] ` <mailman.7369.1515913231.27995.help-gnu-emacs@gnu.org>
2018-01-15 4:17 ` info-find-source Emanuel Berg
2018-01-15 18:54 ` info-find-source Marcin Borkowski
[not found] ` <mailman.7435.1516042498.27995.help-gnu-emacs@gnu.org>
2018-01-15 19:55 ` info-find-source Emanuel Berg
2018-01-16 23:58 ` info-find-source Robert Thorpe
2018-01-19 6:22 ` info-find-source Marcin Borkowski
[not found] ` <mailman.7609.1516342943.27995.help-gnu-emacs@gnu.org>
2018-01-19 7:12 ` info-find-source Emanuel Berg
2018-01-19 20:31 ` info-find-source Marcin Borkowski
2018-01-19 21:05 ` info-find-source Drew Adams
[not found] ` <mailman.7653.1516395915.27995.help-gnu-emacs@gnu.org>
2018-01-19 22:19 ` info-find-source Emanuel Berg
2018-01-19 23:21 ` info-find-source Drew Adams
[not found] ` <mailman.7656.1516404112.27995.help-gnu-emacs@gnu.org>
2018-01-20 19:49 ` info-find-source Emanuel Berg
2018-01-20 20:18 ` info-find-source Eli Zaretskii
[not found] ` <<83bmhos2qd.fsf@gnu.org>
2018-01-20 23:50 ` info-find-source Drew Adams
2018-01-21 0:04 ` info-find-source Drew Adams
[not found] ` <mailman.7695.1516493072.27995.help-gnu-emacs@gnu.org>
2018-01-21 11:49 ` info-find-source Emanuel Berg
[not found] ` <mailman.7650.1516393881.27995.help-gnu-emacs@gnu.org>
2018-01-19 20:43 ` info-find-source Emanuel Berg
2018-01-13 5:17 ` info-find-source Marcin Borkowski
[not found] ` <mailman.7313.1515820700.27995.help-gnu-emacs@gnu.org>
2018-01-14 2:54 ` info-find-source Emanuel Berg
2018-01-15 18:52 ` info-find-source Marcin Borkowski
[not found] ` <mailman.7433.1516042345.27995.help-gnu-emacs@gnu.org>
2018-01-15 19:50 ` info-find-source Emanuel Berg
2017-11-11 9:17 Reload file from disk Florian Weimer
2017-11-11 10:29 ` Eli Zaretskii
2017-11-11 10:40 ` Eli Zaretskii
2017-11-11 10:54 ` Florian Weimer
2017-11-11 11:55 ` Eli Zaretskii
2017-11-11 13:45 ` Ken Olum
2017-11-11 14:11 ` Eli Zaretskii
2017-11-11 15:03 ` Ken Olum
2017-11-11 16:48 ` Drew Adams
2017-11-11 11:59 ` Andreas Schwab
2017-11-11 12:44 ` Noam Postavsky
2017-11-12 18:28 ` Joost Kremers
2017-11-13 17:24 ` Tom Tromey
2017-09-18 21:57 [PATCH] Fixing package-initialize, adding early init file Radon Rosborough
2017-09-19 12:30 ` Stefan Monnier
2017-09-25 16:27 ` Radon Rosborough
2017-09-25 16:54 ` John Wiegley
2017-09-25 19:38 ` Radon Rosborough
2017-09-25 21:23 ` Mark Oteiza
2017-09-25 22:16 ` Radon Rosborough
2017-09-25 23:15 ` Mark Oteiza
2017-09-26 3:00 ` Radon Rosborough
2017-09-29 10:22 ` Eli Zaretskii
2017-09-25 16:58 ` Stefan Monnier
2017-09-25 19:40 ` Radon Rosborough
2017-10-09 23:17 ` Radon Rosborough
2017-10-10 16:52 ` Robert Weiner
2017-10-10 16:59 ` Eli Zaretskii
2017-10-14 21:30 ` Mark Oteiza
2017-10-14 21:52 ` Stefan Monnier
2017-10-15 1:18 ` Radon Rosborough
2017-10-15 14:16 ` Eli Zaretskii
2017-10-15 16:26 ` Stefan Monnier
2017-10-25 22:13 ` Radon Rosborough
2017-10-26 0:11 ` Stefan Monnier
2017-12-18 0:45 ` Radon Rosborough
2018-01-25 4:35 ` Radon Rosborough
2018-01-25 15:43 ` Clément Pit-Claudel
2018-01-25 16:03 ` Stefan Monnier
2018-01-25 16:22 ` Clément Pit-Claudel
2018-01-25 17:12 ` Stefan Monnier
2018-01-26 9:31 ` Eli Zaretskii
2018-01-26 14:34 ` Loading a package applies automatically to future sessions? Richard Stallman
2018-01-26 17:03 ` Stefan Monnier
2018-01-28 12:07 ` Richard Stallman
2018-01-28 13:24 ` Stefan Monnier
2018-01-29 1:50 ` Richard Stallman
2018-01-29 5:56 ` Radon Rosborough
2018-02-02 2:14 ` Richard Stallman
2018-02-02 3:05 ` Clément Pit-Claudel
2018-02-04 3:08 ` Richard Stallman
2018-02-04 15:21 ` Clément Pit-Claudel
2018-02-04 21:27 ` Tim Cross
2018-02-05 10:07 ` George Plymale II
2018-02-05 21:27 ` Tim Cross
2018-02-05 1:08 ` Richard Stallman
2018-02-05 4:15 ` Clément Pit-Claudel
2018-02-05 20:36 ` Richard Stallman
2018-01-26 19:24 ` Radon Rosborough
2018-01-26 20:02 ` Eli Zaretskii
2018-01-28 18:20 ` Radon Rosborough
2018-01-29 1:52 ` Richard Stallman
2018-02-10 12:00 ` Eli Zaretskii
2018-02-11 1:23 ` George Plymale II
2018-02-13 21:14 ` Stefan's patch to improve package loading (was Loading a package applies automatically to future sessions?) George Plymale II
2018-02-14 2:56 ` John Wiegley
2018-02-14 23:32 ` George Plymale II
2018-03-09 2:54 ` Stefan's patch to improve package loading George Plymale II
2018-02-15 4:40 ` Loading a package applies automatically to future sessions? Radon Rosborough
2018-01-27 20:44 ` Richard Stallman
2018-01-28 6:30 ` Radon Rosborough
2018-01-28 9:33 ` Charles A. Roelli
2018-01-28 13:21 ` Stefan Monnier
2018-01-28 17:32 ` Radon Rosborough
2018-01-28 22:11 ` Stefan Monnier
2018-01-29 1:08 ` T.V Raman
2018-01-29 5:53 ` Radon Rosborough
2018-01-29 7:21 ` John Wiegley
2018-01-29 18:54 ` Stefan Monnier
2018-01-29 19:19 ` John Wiegley
2018-01-29 19:55 ` Stefan Monnier
2018-01-29 6:55 ` John Wiegley
2018-01-29 19:08 ` Stefan Monnier
2018-01-29 19:55 ` John Wiegley
2018-01-29 21:50 ` Stefan Monnier
2018-01-29 23:13 ` Clément Pit-Claudel
2018-01-30 1:37 ` T.V Raman
2018-01-29 20:18 ` Clément Pit-Claudel
2018-01-30 15:11 ` Stefan Monnier
2018-01-30 22:33 ` George Plymale II
2018-01-30 22:56 ` George Plymale II
2018-01-31 3:47 ` Stefan Monnier
2018-01-31 5:17 ` George Plymale II
2018-01-31 20:49 ` George Plymale II
2018-01-31 21:35 ` Stefan Monnier
2018-01-31 21:58 ` George Plymale II
2018-01-31 22:06 ` George Plymale II
2018-02-01 14:48 ` Stefan Monnier
2018-02-01 17:47 ` George Plymale II
2018-02-01 19:11 ` Stefan Monnier
2018-02-01 19:19 ` Stephen Berman
2018-02-01 19:28 ` Stephen Berman
2018-02-01 21:44 ` George Plymale II
2018-02-01 22:16 ` Stephen Berman
2018-02-01 23:02 ` George Plymale II
2018-02-02 8:43 ` Eli Zaretskii
2018-02-02 17:19 ` George Plymale II
2018-02-02 17:57 ` Stefan Monnier
2018-02-02 18:06 ` Eli Zaretskii
2018-02-02 12:19 ` Phillip Lord
2018-02-02 19:20 ` Radon Rosborough
2018-02-02 22:53 ` Richard Stallman
2018-02-05 9:17 ` A response to RMS (was Loading a package applies automatically to future sessions?) George Plymale II
2018-02-05 12:55 ` Clément Pit-Claudel
2018-02-06 23:34 ` George Plymale II
2018-02-05 20:36 ` Richard Stallman
2018-02-06 23:42 ` George Plymale II
2018-02-07 20:45 ` Richard Stallman
2018-02-05 20:36 ` Richard Stallman
2018-02-05 20:36 ` Richard Stallman
2018-02-06 15:06 ` Loading a package applies automatically to future sessions? Sam Steingold
2018-02-02 22:53 ` Richard Stallman
2018-02-02 23:12 ` Stephen Berman
2018-02-03 19:13 ` Richard Stallman
2018-02-03 20:40 ` Stephen Berman
2018-02-04 3:07 ` Richard Stallman
2018-02-05 9:26 ` George Plymale II
2018-02-05 9:22 ` Finding an online resource for the agreement (was Loading a package applies automatically to future sessions?) George Plymale II
2018-02-02 2:14 ` Loading a package applies automatically to future sessions? Richard Stallman
2018-02-02 7:25 ` George Plymale II
2018-02-02 9:39 ` Eli Zaretskii
2018-02-02 17:07 ` George Plymale II
2018-02-02 17:59 ` Stefan Monnier
2018-02-02 22:56 ` Richard Stallman
2018-02-14 22:28 ` Richard Stallman
2018-02-14 23:18 ` George Plymale II
2018-02-02 8:39 ` Eli Zaretskii
2018-02-02 17:21 ` George Plymale II
2018-02-02 18:08 ` Eli Zaretskii
2018-02-02 2:12 ` Richard Stallman
2018-02-02 6:15 ` George Plymale II
2018-02-04 3:07 ` Richard Stallman
2018-02-05 9:35 ` Another response to RMS (was Loading a package applies automatically to future sessions?) George Plymale II
2018-02-05 20:37 ` Richard Stallman
2018-02-06 23:47 ` George Plymale II
2018-02-02 2:13 ` Loading a package applies automatically to future sessions? Richard Stallman
2018-02-01 19:24 ` Richard Stallman
2018-02-01 21:36 ` George Plymale II
2018-02-02 2:08 ` Tim Landscheidt
2018-02-02 22:53 ` Richard Stallman
2018-02-02 2:17 ` Richard Stallman
2018-02-02 6:26 ` George Plymale II
2018-02-02 9:26 ` Eli Zaretskii
2018-02-02 17:14 ` George Plymale II
2018-02-02 22:56 ` Richard Stallman
2018-02-05 9:19 ` George Plymale II
2018-02-05 20:36 ` Richard Stallman
2018-02-06 23:44 ` George Plymale II
2018-02-02 2:17 ` Richard Stallman
2018-02-02 7:33 ` George Plymale II
2018-02-02 18:38 ` Drew Adams
2018-02-02 19:05 ` Generations (was: Loading a package applies automatically to future sessions?) Stefan Monnier
2018-02-02 21:40 ` Drew Adams
2018-02-02 22:57 ` Richard Stallman
2018-02-02 23:03 ` Drew Adams
2018-02-02 20:36 ` Loading a package applies automatically to future sessions? Phillip Lord
2018-02-02 2:17 ` Richard Stallman
2018-02-02 7:24 ` George Plymale II
2018-02-02 22:28 ` Paul Eggert
2018-02-05 8:21 ` George Plymale II
2018-02-05 20:36 ` Richard Stallman
2018-02-04 3:09 ` Richard Stallman
2018-02-02 13:37 ` Clément Pit-Claudel
2018-02-02 17:20 ` Drew Adams
2018-02-05 4:51 ` Herring, Davis
2018-02-01 19:47 ` Stefan Monnier
2018-02-01 22:10 ` George Plymale II
2018-02-01 22:44 ` George Plymale II
2018-02-02 1:54 ` Stefan Monnier
2018-02-02 20:32 ` George Plymale II
2018-01-31 3:51 ` T.V Raman
2018-01-31 5:18 ` George Plymale II
2018-01-31 6:56 ` Tim Cross
2018-01-31 7:07 ` George Plymale II
2018-01-31 8:05 ` John Wiegley
2018-02-01 7:26 ` Tim Cross
2018-02-01 15:00 ` Stefan Monnier
2018-02-01 16:23 ` T.V Raman
2018-02-03 0:39 ` Tim Cross
2018-02-05 9:24 ` George Plymale II
2018-01-29 1:50 ` Richard Stallman
2018-01-25 17:07 ` [PATCH] Fixing package-initialize, adding early init file Stefan Monnier
2018-01-28 19:42 ` Radon Rosborough
2018-01-30 15:02 ` Stefan Monnier
2018-01-30 15:44 ` Eli Zaretskii
2018-02-01 3:12 ` Mark Oteiza
2018-02-01 4:22 ` Radon Rosborough
2018-02-01 13:36 ` Stefan Monnier
2018-02-18 5:40 ` Stefan Monnier
2018-02-08 5:54 ` Radon Rosborough
2018-02-08 15:27 ` Eli Zaretskii
2018-01-30 19:30 ` Radon Rosborough
2018-02-10 11:56 ` Eli Zaretskii
2018-02-10 23:37 ` Stefan Monnier
2018-02-11 3:26 ` Radon Rosborough
2018-02-11 14:45 ` Stefan Monnier
2018-02-11 13:31 ` Basil L. Contovounesios
2018-02-15 4:38 ` Radon Rosborough
2018-02-15 15:54 ` Drew Adams
2018-02-15 16:25 ` Stefan Monnier
2018-02-15 19:32 ` John Wiegley
2018-02-15 21:13 ` Stefan Monnier
2018-02-16 7:00 ` John Wiegley
2018-02-17 11:38 ` Eli Zaretskii
2018-02-17 14:14 ` Clément Pit-Claudel
2018-02-17 18:17 ` Radon Rosborough
2018-02-18 18:26 ` Basil L. Contovounesios
2018-02-18 18:55 ` Radon Rosborough
2018-02-19 3:10 ` Stefan Monnier
2018-02-20 19:13 ` Basil L. Contovounesios
2018-02-20 19:26 ` Basil L. Contovounesios
2018-02-20 20:35 ` Radon Rosborough
2018-02-21 3:48 ` T.V Raman
2018-02-21 8:16 ` Stefan Monnier
2018-02-21 20:48 ` Radon Rosborough
2018-02-21 21:26 ` Stefan Monnier
2018-02-21 3:43 ` T.V Raman
2017-10-10 19:03 ` Radon Rosborough
2017-10-10 19:31 ` Robert Weiner
2017-10-10 19:41 ` Radon Rosborough
2017-10-13 21:29 ` John Wiegley
2017-10-14 0:49 ` Radon Rosborough
2017-10-14 5:15 ` João Távora
2017-10-14 6:19 ` Radon Rosborough
2017-10-14 9:04 ` João Távora
2017-10-14 13:47 ` Stefan Monnier
2016-08-03 9:30 How to get back to a place in a buffer, or: what is a window configuration? Marcin Borkowski
2016-08-03 11:25 ` Kaushal Modi
2016-08-03 18:31 ` Marcin Borkowski
2016-08-03 14:42 ` Drew Adams
2016-08-03 18:42 ` Marcin Borkowski
2016-08-03 19:39 ` Drew Adams
2016-08-03 21:47 ` Robert Thorpe
2016-08-03 22:06 ` Drew Adams
2016-05-13 14:20 Overriding emacs key bindings xiongtk
2016-05-16 18:04 ` Eli Zaretskii
2016-05-16 21:15 ` xiongtk
2016-05-16 18:59 ` Emanuel Berg
2016-05-16 21:14 ` xiongtk
2016-05-16 23:29 ` Emanuel Berg
2016-05-17 1:55 ` Robert Thorpe
2016-05-17 2:41 ` Emanuel Berg
2016-05-17 4:07 ` Drew Adams
2016-05-17 3:25 ` Kaushal Modi
2016-05-17 4:07 ` Drew Adams
2016-05-17 4:15 ` Emanuel Berg
2016-05-17 20:38 ` Robert Thorpe
2016-05-17 4:07 ` Drew Adams
2016-05-18 1:42 ` Emacs conventions (was: Re: Overriding emacs key bindings) Emanuel Berg
2016-05-18 4:38 ` Drew Adams
2016-05-18 5:22 ` Emanuel Berg
2016-05-18 5:36 ` "First line is not a complete sentence" (was: Re: Emacs conventions (was: Re: Overriding emacs key bindings)) Emanuel Berg
[not found] ` <mailman.40.1463549841.6543.help-gnu-emacs@gnu.org>
2016-05-18 13:27 ` Joost Kremers
2016-05-19 4:32 ` Emanuel Berg
[not found] ` <mailman.37.1463546355.6543.help-gnu-emacs@gnu.org>
2016-05-18 14:31 ` Emacs conventions (was: Re: Overriding emacs key bindings) Barry Margolin
2016-05-19 4:38 ` Emanuel Berg
2016-05-17 4:44 ` Overriding emacs key bindings Marcin Borkowski
2016-05-17 20:37 ` Robert Thorpe
2016-05-18 2:21 ` Emanuel Berg
2016-05-18 20:34 ` Robert Thorpe
2016-05-19 1:33 ` Emanuel Berg
2016-05-18 17:52 ` Marcin Borkowski
2016-05-18 20:30 ` Robert Thorpe
2016-05-17 4:43 ` Marcin Borkowski
2016-05-18 1:51 ` Emanuel Berg
2016-05-17 4:49 ` Marcin Borkowski
2016-05-18 2:02 ` Emanuel Berg
2015-03-03 0:47 Opening a bookmark in the init file Robert Thorpe
2015-03-03 0:56 ` Drew Adams
2015-03-03 2:32 ` Robert Thorpe
2015-03-08 19:18 ` Robert Thorpe
2015-03-08 21:24 ` Drew Adams
2015-03-08 21:48 ` Robert Thorpe
2015-03-08 22:52 ` Drew Adams
2015-01-14 22:12 Info: how to get back from a footnote Marcin Borkowski
2015-01-15 2:42 ` Robert Thorpe
2015-01-15 3:11 ` Drew Adams
2015-01-15 5:51 ` Marcin Borkowski
2015-01-16 2:38 ` Robert Thorpe
[not found] <mailman.16504.1419019164.1147.help-gnu-emacs@gnu.org>
2014-12-29 4:21 ` Abbrevs for the most frequent elisp symbols Emanuel Berg
2014-12-29 11:24 ` Marcin Borkowski
2014-12-29 13:09 ` Robert Thorpe
2014-12-29 15:28 ` Drew Adams
2014-12-29 16:28 ` Robert Thorpe
2014-12-29 13:26 ` Stefan Monnier
2014-12-29 13:40 ` Marcin Borkowski
2014-12-29 14:57 ` Stefan Monnier
2014-12-29 15:49 ` Tom
[not found] ` <mailman.16844.1419852282.1147.help-gnu-emacs@gnu.org>
2015-01-03 2:25 ` Emanuel Berg
2015-01-04 0:19 ` Artur Malabarba
[not found] ` <mailman.17204.1420330787.1147.help-gnu-emacs@gnu.org>
2015-01-05 21:16 ` Emanuel Berg
2015-01-08 20:53 ` Artur Malabarba
2015-01-03 2:31 ` Emanuel Berg
2014-11-24 16:40 When do you prefer frames instead of windows? Raffaele Ricciardi
2014-11-24 17:20 ` Drew Adams
2014-11-25 8:03 ` Gian Uberto Lauri
2014-11-25 15:46 ` Drew Adams
2014-11-25 15:54 ` Gian Uberto Lauri
2014-11-25 8:33 ` When do you prefer windows instead of frames? Was: " H. Dieter Wilhelm
2014-11-25 15:46 ` Drew Adams
2014-11-25 18:40 ` MBR
2014-11-25 18:52 ` Drew Adams
2014-11-26 2:31 ` Yuri Khan
2014-12-19 16:08 ` Jude DaShiell
2014-11-25 8:52 ` Rainer M Krug
2014-11-24 19:10 ` MBR
2014-11-24 19:14 ` Drew Adams
2014-11-24 22:12 ` H. Dieter Wilhelm
[not found] ` <mailman.14497.1416867184.1147.help-gnu-emacs@gnu.org>
2014-11-25 0:59 ` Barry Margolin
2014-11-25 1:29 ` Robert Thorpe
2014-11-25 4:21 ` Drew Adams
2014-11-25 8:54 ` Rainer M Krug
2014-11-25 15:47 ` Drew Adams
2014-11-25 1:45 ` Yuri Khan
2014-11-25 9:27 ` Ralf Fassel
2014-11-25 15:47 ` Drew Adams
[not found] ` <mailman.14554.1416930453.1147.help-gnu-emacs@gnu.org>
2014-11-25 15:57 ` Ralf Fassel
2014-11-25 16:57 ` Drew Adams
[not found] ` <mailman.14564.1416934703.1147.help-gnu-emacs@gnu.org>
2014-11-25 17:16 ` Ralf Fassel
2014-11-25 18:09 ` Drew Adams
2014-11-25 22:08 ` Subhan Michael Tindall
2014-11-25 22:22 ` Drew Adams
[not found] ` <mailman.14600.1416953316.1147.help-gnu-emacs@gnu.org>
2014-11-26 9:34 ` Joost Kremers
2014-11-25 22:02 ` Subhan Michael Tindall
2014-11-26 5:02 ` Yuri Khan
[not found] ` <mailman.14479.1416849631.1147.help-gnu-emacs@gnu.org>
2014-11-24 17:47 ` Barry Margolin
2014-11-24 18:06 ` Jai Dayal
2014-11-25 17:32 ` Joost Kremers
[not found] ` <<slrnm79f8k.a37.joost.m.kremers@j.kremers4.news.arnhem.chello.nl>
2014-11-25 18:09 ` Drew Adams
2014-11-25 22:28 ` Bob Proulx
2014-11-25 22:54 ` Drew Adams
2014-11-26 8:12 ` Alan Schmitt
2014-11-26 13:42 ` H. Dieter Wilhelm
2014-11-28 13:51 ` Tom Davey
2014-11-28 15:39 ` Drew Adams
2014-11-26 16:37 ` Ken Goldman
2014-11-27 21:02 ` Chris F.A. Johnson
2014-07-23 21:37 when you gotta have a variable value for a symbol name Buchs, Kevin J.
2014-07-23 22:02 ` Drew Adams
[not found] ` <(message>
[not found] ` <from>
[not found] ` <Barry>
[not found] ` <Eli>
[not found] ` <Robert>
[not found] ` <Juri>
[not found] ` <Raffaele>
[not found] ` <Emanuel>
[not found] ` <Marcin>
[not found] ` <Drew>
[not found] ` <Adams>
[not found] ` <on>
[not found] ` <Thu>
[not found] ` <01>
[not found] ` <Sat>
[not found] ` <Fri>
[not found] ` <Wed>
[not found] ` <23>
[not found] ` <Jul>
[not found] ` <2014>
[not found] ` <15:02:38>
[not found] ` <-0700>
[not found] ` <17:40:42>
[not found] ` <2019>
[not found] ` <07:18:26>
[not found] ` <16:21:24>
[not found] ` <14>
[not found] ` <Jan>
[not found] ` <2018>
[not found] ` <21:17:16>
[not found] ` <2015>
[not found] ` <02:32:50>
[not found] ` <Mon>
[not found] ` <29>
[not found] ` <24>
[not found] ` <Nov>
[not found] ` <2017>
[not found] ` <Sun>
[not found] ` <Tue>
[not found] ` <17>
[not found] ` <May>
[not found] ` <2020>
[not found] ` <01:18:18>
[not found] ` <17:07:29>
[not found] ` <-0800>
[not found] ` <23:56:00>
[not found] ` <04:01:05>
[not found] ` <2016>
[not found] ` <01:29:37>
[not found] ` <03>
[not found] ` <Richard>
2014-07-24 21:57 ` Robert Thorpe
2014-07-25 0:06 ` Drew Adams
[not found] ` <mailman.5936.1406152985.1147.help-gnu-emacs@gnu.org>
2014-07-23 22:12 ` Pascal J. Bourguignon
[not found] <Your>
[not found] ` <message>
[not found] ` <of>
[not found] ` <"Tue>
[not found] ` <09>
[not found] ` <Oct>
[not found] ` <"Thu,>
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=12410.1562824271@alto \
--to=mkupfer@alum.berkeley.edu \
--cc=35367@debbugs.gnu.org \
--cc=larsi@gnus.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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.