* Re: auto-fill in message mode filling with prefix "> "
[not found] <mailman.6710.1514910241.27995.help-gnu-emacs@gnu.org>
@ 2018-01-03 9:16 ` Gijs Hillenius
2018-01-03 17:07 ` Eric S Fraga
[not found] ` <mailman.6775.1514999293.27995.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 22+ messages in thread
From: Gijs Hillenius @ 2018-01-03 9:16 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 1014 bytes --]
On 2 Jan 2018, Eric S. Fraga wrote:
> Hello,
>
> I use emacs snapshot on Debian. Recently, but cannot say when
> exactly, my email composition has started behaving strangely with
> respect to auto-fill mode. Specifically, if I'm responding to an
> email, as I type, long lines get auto-filled with "> " as the prefix.
> The first line of the paragraph does *not* start with "> " and I
> usually have at least one blank line between the paragraph I am typing
> and any included text from the original email.
>
> I have searched my configuration for anything that would affect this
> but I have nothing. When it comes to auto-fill, I've left everything
> as default as far as I can tell.
>
> Any suggestions on how to track this down would be welcome.
I'm using Emacs25 and Emacs-Snapshot on Debian. My emacs init loads
'Trivial Cite' (TC), and I do *not* experience this issue.
TC is in Debian's emacs-goodies-el. Perhaps a comparison of TC and the
Emacs efault will turn up a clue.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-03 9:16 ` auto-fill in message mode filling with prefix "> " Gijs Hillenius
@ 2018-01-03 17:07 ` Eric S Fraga
[not found] ` <mailman.6775.1514999293.27995.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 22+ messages in thread
From: Eric S Fraga @ 2018-01-03 17:07 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 1023 bytes --]
On Wednesday, 3 Jan 2018 at 10:16, Gijs Hillenius wrote:
[...]
> I'm using Emacs25 and Emacs-Snapshot on Debian. My emacs init loads
> 'Trivial Cite' (TC), and I do *not* experience this issue.
Thanks for this.
> TC is in Debian's emacs-goodies-el. Perhaps a comparison of TC and the
> Emacs efault will turn up a clue.
But interestingly enough, emacs-goodies-el started failing on
installation (via apt) with more recent emacs snapshots. Trying just
now gives me lots of warnings but more importantly some errors:
filladapt.el:79:1:Error: Loading ‘nil’: old-style backquotes detected!
framepop.el:774:1:Error: Loading ‘nil’: old-style backquotes detected!
highlight-current-line.el:188:1:Error: Loading ‘nil’: old-style backquotes detected!
xrdb-mode.el:179:1:Error: Loading ‘nil’: old-style backquotes detected!
This is with emacs snapshot version 2:20171231 on buster.
The same package compiles fine with emacs25 however.
--
Eric S Fraga via Emacs 27.0.50, org 9.1.6
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 194 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
[parent not found: <mailman.6775.1514999293.27995.help-gnu-emacs@gnu.org>]
* Re: auto-fill in message mode filling with prefix "> "
[not found] ` <mailman.6775.1514999293.27995.help-gnu-emacs@gnu.org>
@ 2018-01-03 17:55 ` HASM
2018-01-03 19:26 ` Alan Mackenzie
` (2 more replies)
0 siblings, 3 replies; 22+ messages in thread
From: HASM @ 2018-01-03 17:55 UTC (permalink / raw)
To: help-gnu-emacs
Eric S Fraga <e.fraga@ucl.ac.uk> writes:
> filladapt.el:79:1:Error: Loading ‘nil’: old-style backquotes detected!
> This is with emacs snapshot version 2:20171231 on buster.
> The same package compiles fine with emacs25 however.
On my emacs 25.3.1, filladapt.el complains of the backquotes problem,
but compiles (after I fix another small problem, elsewhere) and seems to
run.
Don't know enough elisp to fully replace the `, construct here
(defmacro defcustom (var value doc &rest args)
(` (defvar (, var) (, value) (, doc))))))
with non-deprecated code.
-- HASM
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-03 17:55 ` HASM
@ 2018-01-03 19:26 ` Alan Mackenzie
2018-01-03 20:42 ` HASM
2018-01-03 22:23 ` Stefan Monnier
[not found] ` <mailman.6785.1515018235.27995.help-gnu-emacs@gnu.org>
2 siblings, 1 reply; 22+ messages in thread
From: Alan Mackenzie @ 2018-01-03 19:26 UTC (permalink / raw)
To: help-gnu-emacs
HASM <hasm@example.invalid> wrote:
> Eric S Fraga <e.fraga@ucl.ac.uk> writes:
>> filladapt.el:79:1:Error: Loading ‘nil’: old-style backquotes detected!
>> This is with emacs snapshot version 2:20171231 on buster.
>> The same package compiles fine with emacs25 however.
> On my emacs 25.3.1, filladapt.el complains of the backquotes problem,
> but compiles (after I fix another small problem, elsewhere) and seems to
> run.
> Don't know enough elisp to fully replace the `, construct here
> (defmacro defcustom (var value doc &rest args)
> (` (defvar (, var) (, value) (, doc))))))
> with non-deprecated code.
This is actually simple - you don't need to know lisp.
Replace (` x) with `x.
Replace (, y) with ,y.
So that entire last line should become:
`(defvar ,var ,value ,doc))))
.
> -- HASM
--
Alan Mackenzie (Nuremberg, Germany).
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-03 19:26 ` Alan Mackenzie
@ 2018-01-03 20:42 ` HASM
0 siblings, 0 replies; 22+ messages in thread
From: HASM @ 2018-01-03 20:42 UTC (permalink / raw)
To: help-gnu-emacs
>> Don't know enough elisp to fully replace the `, construct here
>> (defmacro defcustom (var value doc &rest args)
>> (` (defvar (, var) (, value) (, doc))))))
>> with non-deprecated code.
> This is actually simple - you don't need to know lisp.
> Replace (` x) with `x.
> Replace (, y) with ,y.
Ha! It's the parenthesis that are being deprecated:-)
Filladapt.el now compiles with no warnings.
-- HASM
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-03 17:55 ` HASM
2018-01-03 19:26 ` Alan Mackenzie
@ 2018-01-03 22:23 ` Stefan Monnier
[not found] ` <mailman.6785.1515018235.27995.help-gnu-emacs@gnu.org>
2 siblings, 0 replies; 22+ messages in thread
From: Stefan Monnier @ 2018-01-03 22:23 UTC (permalink / raw)
To: help-gnu-emacs
> Don't know enough elisp to fully replace the `, construct here
> (defmacro defcustom (var value doc &rest args)
> (` (defvar (, var) (, value) (, doc))))))
> with non-deprecated code.
For this particular case, the right fix is to remove the whole (defmacro
...) since it's only there for compatibility with versions of Emacs that
don't have `defcustom`. This macro was introduced in Emacs-19 or
Emacs-20, can't remember which but it's highly unlikely that you still
have such an Emacs on your machine.
Stefan
^ permalink raw reply [flat|nested] 22+ messages in thread
[parent not found: <mailman.6785.1515018235.27995.help-gnu-emacs@gnu.org>]
* Re: auto-fill in message mode filling with prefix "> "
[not found] ` <mailman.6785.1515018235.27995.help-gnu-emacs@gnu.org>
@ 2018-01-04 2:24 ` HASM
2018-01-04 18:41 ` Stefan Monnier
0 siblings, 1 reply; 22+ messages in thread
From: HASM @ 2018-01-04 2:24 UTC (permalink / raw)
To: help-gnu-emacs
> For this particular case, the right fix is to remove the whole (defmacro
> ...) since it's only there for compatibility with versions of Emacs that
> don't have `defcustom`.
Most likely. Looking closer at it the defmacro is part of an
eval-and-compile preceded by the comment:
;; BLOB to make custom stuff work even without customize
I'll comment out the whole eval-and-compile.
-- HASM
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-04 2:24 ` HASM
@ 2018-01-04 18:41 ` Stefan Monnier
0 siblings, 0 replies; 22+ messages in thread
From: Stefan Monnier @ 2018-01-04 18:41 UTC (permalink / raw)
To: help-gnu-emacs
> Most likely. Looking closer at it the defmacro is part of an
> eval-and-compile preceded by the comment:
> ;; BLOB to make custom stuff work even without customize
> I'll comment out the whole eval-and-compile.
BTW, maybe we could put filladapt into GNU ELPA.
I think we pretty much have the legal paperwork already.
It'd be good to get Kyle's agreement by email, tho.
Stefan
^ permalink raw reply [flat|nested] 22+ messages in thread
[parent not found: <mailman.6778.1515010834.27995.help-gnu-emacs@gnu.org>]
* auto-fill in message mode filling with prefix "> "
@ 2018-01-02 16:23 Eric S Fraga
2018-01-02 16:34 ` Eric Abrahamsen
2018-01-02 17:46 ` Narendra Joshi
0 siblings, 2 replies; 22+ messages in thread
From: Eric S Fraga @ 2018-01-02 16:23 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 770 bytes --]
Hello,
I use emacs snapshot on Debian. Recently, but cannot say when exactly,
my email composition has started behaving strangely with respect to
auto-fill mode. Specifically, if I'm responding to an email, as I type,
long lines get auto-filled with "> " as the prefix. The first line of
the paragraph does *not* start with "> " and I usually have at least one
blank line between the paragraph I am typing and any included text from
the original email.
I have searched my configuration for anything that would affect this but
I have nothing. When it comes to auto-fill, I've left everything as
default as far as I can tell.
Any suggestions on how to track this down would be welcome.
Thank you.
--
Eric S Fraga via Emacs 27.0.50, org 9.1.6
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 194 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-02 16:23 Eric S Fraga
@ 2018-01-02 16:34 ` Eric Abrahamsen
2018-01-02 16:43 ` Eli Zaretskii
` (2 more replies)
2018-01-02 17:46 ` Narendra Joshi
1 sibling, 3 replies; 22+ messages in thread
From: Eric Abrahamsen @ 2018-01-02 16:34 UTC (permalink / raw)
To: help-gnu-emacs
Eric S Fraga <e.fraga@ucl.ac.uk> writes:
> Hello,
>
> I use emacs snapshot on Debian. Recently, but cannot say when exactly,
> my email composition has started behaving strangely with respect to
> auto-fill mode. Specifically, if I'm responding to an email, as I type,
> long lines get auto-filled with "> " as the prefix. The first line of
> the paragraph does *not* start with "> " and I usually have at least one
> blank line between the paragraph I am typing and any included text from
> the original email.
There was a thread not too long ago about this, but now I can't for the
life of me find it. I only glanced over the thread (I saw this problem,
too, but only once or twice), but my impression was that someone had
figured it out. I think if you just wait a bit, the fix will come down
to you.
Sorry to be unhelpful...
Eric
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-02 16:34 ` Eric Abrahamsen
@ 2018-01-02 16:43 ` Eli Zaretskii
2018-01-02 16:46 ` Eric Abrahamsen
2018-01-02 17:01 ` Eric S Fraga
2018-01-02 16:47 ` Eric S Fraga
[not found] ` <mailman.6713.1514911411.27995.help-gnu-emacs@gnu.org>
2 siblings, 2 replies; 22+ messages in thread
From: Eli Zaretskii @ 2018-01-02 16:43 UTC (permalink / raw)
To: help-gnu-emacs
> From: Eric Abrahamsen <eric@ericabrahamsen.net>
> Date: Tue, 02 Jan 2018 08:34:36 -0800
>
> There was a thread not too long ago about this, but now I can't for the
> life of me find it.
http://lists.gnu.org/archive/html/bug-gnu-emacs/2017-12/msg00665.html
(and bug#29767 in general).
And no, I don't think we have a solution for that yet.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-02 16:43 ` Eli Zaretskii
@ 2018-01-02 16:46 ` Eric Abrahamsen
2018-01-02 17:01 ` Eric S Fraga
1 sibling, 0 replies; 22+ messages in thread
From: Eric Abrahamsen @ 2018-01-02 16:46 UTC (permalink / raw)
To: help-gnu-emacs
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Eric Abrahamsen <eric@ericabrahamsen.net>
>> Date: Tue, 02 Jan 2018 08:34:36 -0800
>>
>> There was a thread not too long ago about this, but now I can't for the
>> life of me find it.
>
> http://lists.gnu.org/archive/html/bug-gnu-emacs/2017-12/msg00665.html
>
> (and bug#29767 in general).
>
> And no, I don't think we have a solution for that yet.
I was doubly unhelpful! Thanks for the link.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-02 16:43 ` Eli Zaretskii
2018-01-02 16:46 ` Eric Abrahamsen
@ 2018-01-02 17:01 ` Eric S Fraga
1 sibling, 0 replies; 22+ messages in thread
From: Eric S Fraga @ 2018-01-02 17:01 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
On Tuesday, 2 Jan 2018 at 18:43, Eli Zaretskii wrote:
> http://lists.gnu.org/archive/html/bug-gnu-emacs/2017-12/msg00665.html
>
> (and bug#29767 in general).
>
> And no, I don't think we have a solution for that yet.
Thanks. This bug is exactly what I am experiencing, including the
> non-deterministic nature of it (leaving this line as is...).
--
Eric S Fraga via Emacs 27.0.50, org 9.1.6
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 194 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-02 16:34 ` Eric Abrahamsen
2018-01-02 16:43 ` Eli Zaretskii
@ 2018-01-02 16:47 ` Eric S Fraga
[not found] ` <mailman.6713.1514911411.27995.help-gnu-emacs@gnu.org>
2 siblings, 0 replies; 22+ messages in thread
From: Eric S Fraga @ 2018-01-02 16:47 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 567 bytes --]
On Tuesday, 2 Jan 2018 at 08:34, Eric Abrahamsen wrote:
> There was a thread not too long ago about this, but now I can't for the
> life of me find it. I only glanced over the thread (I saw this problem,
> too, but only once or twice), but my impression was that someone had
> figured it out. I think if you just wait a bit, the fix will come down
> to you.
Thanks; this helps as it does mean I am not going crazy! ;-)
I'll look for it but hopefully somebody will respond here in case I
cannot find it!
--
Eric S Fraga via Emacs 27.0.50, org 9.1.6
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 194 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
[parent not found: <mailman.6713.1514911411.27995.help-gnu-emacs@gnu.org>]
* Re: auto-fill in message mode filling with prefix "> "
[not found] ` <mailman.6713.1514911411.27995.help-gnu-emacs@gnu.org>
@ 2018-01-02 18:38 ` HASM
2018-01-02 18:44 ` Eric S Fraga
[not found] ` <mailman.6724.1514918672.27995.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 22+ messages in thread
From: HASM @ 2018-01-02 18:38 UTC (permalink / raw)
To: help-gnu-emacs
Eli Zaretskii <eliz@gnu.org> writes:
>> There was a thread not too long ago about this, but now I can't for the
>> life of me find it.
> http://lists.gnu.org/archive/html/bug-gnu-emacs/2017-12/msg00665.html
> (and bug#29767 in general).
> And no, I don't think we have a solution for that yet.
Maybe use the old filladapt (worked great on XEmacs) while those bugs
get fixed.
-- HASM
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-02 18:38 ` HASM
@ 2018-01-02 18:44 ` Eric S Fraga
[not found] ` <mailman.6724.1514918672.27995.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 22+ messages in thread
From: Eric S Fraga @ 2018-01-02 18:44 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 366 bytes --]
On Tuesday, 2 Jan 2018 at 10:38, HASM wrote:
[...]
> Maybe use the old filladapt (worked great on XEmacs) while those bugs
> get fixed.
Thanks. I might do just that. For the moment, I have turned off
auto-fill and simply fill the paragraphs when I'm done. Paragraph
filling seems to work just fine.
--
Eric S Fraga via Emacs 27.0.50, org 9.1.6
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 194 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
[parent not found: <mailman.6724.1514918672.27995.help-gnu-emacs@gnu.org>]
* Re: auto-fill in message mode filling with prefix "> "
[not found] ` <mailman.6724.1514918672.27995.help-gnu-emacs@gnu.org>
@ 2018-01-03 1:29 ` HASM
2018-01-03 20:20 ` Robert Thorpe
0 siblings, 1 reply; 22+ messages in thread
From: HASM @ 2018-01-03 1:29 UTC (permalink / raw)
To: help-gnu-emacs
Eric S Fraga <e.fraga@ucl.ac.uk> writes:
>> Maybe use the old filladapt (worked great on XEmacs) while those bugs
>> get fixed.
> For the moment, I have turned off auto-fill and simply fill the
> paragraphs when I'm done. Paragraph filling seems to work just fine.
Emacs filling is different from filladapt in one annoying way, even
running with -Q thus probably not my setup.
If you type something like
line1 word1 word2
indentedLine2 word1 word2
line3 word1 word2
and then, with the cursor anywhere on line3, invoke fill-paragrah, you
end up with:
line1 word1 word2 indentedLine2 word1 word2 line3 word1 word2
whereas, filladapt leaves it as displayed. And yes, emacs auto-fill
also doesn't handle line tags properly.
-- HASM
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-03 1:29 ` HASM
@ 2018-01-03 20:20 ` Robert Thorpe
0 siblings, 0 replies; 22+ messages in thread
From: Robert Thorpe @ 2018-01-03 20:20 UTC (permalink / raw)
To: help-gnu-emacs
HASM <hasm@example.invalid> writes:
> Eric S Fraga <e.fraga@ucl.ac.uk> writes:
>
>>> Maybe use the old filladapt (worked great on XEmacs) while those bugs
>>> get fixed.
>
>> For the moment, I have turned off auto-fill and simply fill the
>> paragraphs when I'm done. Paragraph filling seems to work just fine.
>
> Emacs filling is different from filladapt in one annoying way, even
> running with -Q thus probably not my setup.
>
> If you type something like
>
> line1 word1 word2
> indentedLine2 word1 word2
> line3 word1 word2
>
> and then, with the cursor anywhere on line3, invoke fill-paragrah, you
> end up with:
>
> line1 word1 word2 indentedLine2 word1 word2 line3 word1 word2
>
> whereas, filladapt leaves it as displayed. And yes, emacs auto-fill
> also doesn't handle line tags properly.
If you want indented paragraphs then you can use
paragraph-indent-text-mode or paragraph-indent-minor-mode. That will
make fill-paragraph behave itself in this case.
However, AFAIK, out-of-the-box Emacs provides no way to deal with both
types of paragraphs in one buffer. You have to pick either space
separated paragraphs or indented paragraphs.
BR,
Robert Thorpe
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: auto-fill in message mode filling with prefix "> "
2018-01-02 16:23 Eric S Fraga
2018-01-02 16:34 ` Eric Abrahamsen
@ 2018-01-02 17:46 ` Narendra Joshi
2018-01-02 18:14 ` Eric S Fraga
1 sibling, 1 reply; 22+ messages in thread
From: Narendra Joshi @ 2018-01-02 17:46 UTC (permalink / raw)
To: Eric S Fraga; +Cc: help-gnu-emacs
Eric S Fraga <e.fraga@ucl.ac.uk> writes:
> Hello,
>
> I use emacs snapshot on Debian. Recently, but cannot say when exactly,
> my email composition has started behaving strangely with respect to
> auto-fill mode. Specifically, if I'm responding to an email, as I type,
> long lines get auto-filled with "> " as the prefix. The first line of
> the paragraph does *not* start with "> " and I usually have at least one
> blank line between the paragraph I am typing and any included text from
> the original email.
>
> I have searched my configuration for anything that would affect this but
> I have nothing. When it comes to auto-fill, I've left everything as
> default as far as I can tell.
>
> Any suggestions on how to track this down would be welcome.
Are you able to reproduce this in Emacs started with `emacs -Q`?
--
Narendra Joshi
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2018-01-04 18:41 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <mailman.6710.1514910241.27995.help-gnu-emacs@gnu.org>
2018-01-03 9:16 ` auto-fill in message mode filling with prefix "> " Gijs Hillenius
2018-01-03 17:07 ` Eric S Fraga
[not found] ` <mailman.6775.1514999293.27995.help-gnu-emacs@gnu.org>
2018-01-03 17:55 ` HASM
2018-01-03 19:26 ` Alan Mackenzie
2018-01-03 20:42 ` HASM
2018-01-03 22:23 ` Stefan Monnier
[not found] ` <mailman.6785.1515018235.27995.help-gnu-emacs@gnu.org>
2018-01-04 2:24 ` HASM
2018-01-04 18:41 ` Stefan Monnier
[not found] <mailman.6778.1515010834.27995.help-gnu-emacs@gnu.org>
2018-01-03 20:43 ` HASM
2018-01-03 20:53 ` Emanuel Berg
2018-01-02 16:23 Eric S Fraga
2018-01-02 16:34 ` Eric Abrahamsen
2018-01-02 16:43 ` Eli Zaretskii
2018-01-02 16:46 ` Eric Abrahamsen
2018-01-02 17:01 ` Eric S Fraga
2018-01-02 16:47 ` Eric S Fraga
[not found] ` <mailman.6713.1514911411.27995.help-gnu-emacs@gnu.org>
2018-01-02 18:38 ` HASM
2018-01-02 18:44 ` Eric S Fraga
[not found] ` <mailman.6724.1514918672.27995.help-gnu-emacs@gnu.org>
2018-01-03 1:29 ` HASM
2018-01-03 20:20 ` Robert Thorpe
2018-01-02 17:46 ` Narendra Joshi
2018-01-02 18:14 ` Eric S Fraga
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).