Gnus development mailing list
 help / color / mirror / Atom feed
* 5.6.16 breaks paragraph-filling
@ 1998-06-26 15:57 Karl Kleinpaste
  1998-06-26 20:03 ` Michael Welsh Duggan
  0 siblings, 1 reply; 3+ messages in thread
From: Karl Kleinpaste @ 1998-06-26 15:57 UTC (permalink / raw)


Gnus v5.6.16; nntp 5.0; nnml 1.0; nnmh 1.0; nndraft 1.0
XEmacs 20.4 "Emerald" [Lucid] (i386-pc-linux) of Wed Feb 25 1998 on threepwood.idb.hist.no

I am about to revert to .13, because I've just discovered that .16 has 
utterly destroyed paragraph-filling in some manner in *message*
buffers.  M-q is still bound to function fill-paragraph-or-region, but
it appears that the understanding of paragraph endpoints has been
utterly lost: The entire message, including the header, is filled as
though it were one monstrous paragraph.

Deep badness.

--karl


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 5.6.16 breaks paragraph-filling
  1998-06-26 15:57 5.6.16 breaks paragraph-filling Karl Kleinpaste
@ 1998-06-26 20:03 ` Michael Welsh Duggan
  1998-06-26 20:33   ` Karl Kleinpaste
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Welsh Duggan @ 1998-06-26 20:03 UTC (permalink / raw)



Karl Kleinpaste <karl@jprc.com> writes:

> Gnus v5.6.16; nntp 5.0; nnml 1.0; nnmh 1.0; nndraft 1.0
> XEmacs 20.4 "Emerald" [Lucid] (i386-pc-linux) of Wed Feb 25 1998 on threepwood.idb.hist.no
> 
> I am about to revert to .13, because I've just discovered that .16 has 
> utterly destroyed paragraph-filling in some manner in *message*
> buffers.  M-q is still bound to function fill-paragraph-or-region, but
> it appears that the understanding of paragraph endpoints has been
> utterly lost: The entire message, including the header, is filled as
> though it were one monstrous paragraph.

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.

-- 
Michael Duggan
(md5i@cs.cmu.edu)
.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 5.6.16 breaks paragraph-filling
  1998-06-26 20:03 ` Michael Welsh Duggan
@ 1998-06-26 20:33   ` Karl Kleinpaste
  0 siblings, 0 replies; 3+ messages in thread
From: Karl Kleinpaste @ 1998-06-26 20:33 UTC (permalink / raw)


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)


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~1998-06-26 20:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-06-26 15:57 5.6.16 breaks paragraph-filling Karl Kleinpaste
1998-06-26 20:03 ` Michael Welsh Duggan
1998-06-26 20:33   ` Karl Kleinpaste

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).