Gnus development mailing list
 help / color / mirror / Atom feed
From: Karl Kleinpaste <karl@jprc.com>
Subject: Re: 5.6.16 breaks paragraph-filling
Date: 26 Jun 1998 16:33:57 -0400	[thread overview]
Message-ID: <vxkzpez6gy2.fsf@pocari-sweat.jprc.com> (raw)
In-Reply-To: Michael Welsh Duggan's message of "Fri, 26 Jun 1998 20:03:31 GMT"

Michael Welsh Duggan <md5i@cs.cmu.edu> writes:
> This appears to be bacause of the filling changes Stallman added.  An
> extraneous "\\|" got tacked onto the end of paragraph-start in
> `message-mode'.  Removing that fixed filling for me.

Yup, that appears to be all that's needed.  Patch:

--- message.el.~1~	Fri Jun 26 11:26:58 1998
+++ message.el	Fri Jun 26 16:20:59 1998
@@ -1309,13 +1309,13 @@
   (setq paragraph-start
 	(concat (regexp-quote mail-header-separator)
 		"$\\|[ \t]*[a-z0-9A-Z]*>+[ \t]*$\\|[ \t]*$\\|"
 		"-- $\\|---+$\\|"
 		page-delimiter
 		;;!!! Uhm... shurely this can't be right?
-		"[> " (regexp-quote message-yank-prefix) "]+$\\|"))
+		"[> " (regexp-quote message-yank-prefix) "]+$"))
   (setq paragraph-separate paragraph-start)
   (make-local-variable 'message-reply-headers)
   (setq message-reply-headers nil)
   (make-local-variable 'message-newsreader)
   (make-local-variable 'message-mailer)
   (make-local-variable 'message-post-method)


      reply	other threads:[~1998-06-26 20:33 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-06-26 15:57 Karl Kleinpaste
1998-06-26 20:03 ` Michael Welsh Duggan
1998-06-26 20:33   ` Karl Kleinpaste [this message]

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=vxkzpez6gy2.fsf@pocari-sweat.jprc.com \
    --to=karl@jprc.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).