From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/15418 Path: main.gmane.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.general Subject: Re: 5.6.16 breaks paragraph-filling Date: 26 Jun 1998 16:33:57 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035154453 21992 80.91.224.250 (20 Oct 2002 22:54:13 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:54:13 +0000 (UTC) Return-Path: Original-Received: from gwyn.tux.org (gwyn.tux.org [207.96.122.8]) by altair.xemacs.org (8.9.0/8.9.0) with ESMTP id NAA08845 for ; Fri, 26 Jun 1998 13:40:30 -0700 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by gwyn.tux.org (8.8.8/8.8.8) with ESMTP id QAA29848 for ; Fri, 26 Jun 1998 16:36:26 -0400 Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id PAS19132; Fri, 26 Jun 1998 15:09:43 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 26 Jun 1998 15:35:00 -0500 (CDT) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by sina.hpc.uh.edu (8.7.3/8.7.3) with SMTP id PAA28608 for ; Fri, 26 Jun 1998 15:34:52 -0500 (CDT) Original-Received: (qmail 5308 invoked by uid 504); 26 Jun 1998 20:34:29 -0000 Original-Received: (qmail 5305 invoked from network); 26 Jun 1998 20:34:28 -0000 Original-Received: from pocari-sweat.jprc.com (207.86.147.217) by claymore.vcinet.com with SMTP; 26 Jun 1998 20:34:28 -0000 Original-Received: (from karl@localhost) by pocari-sweat.jprc.com (8.8.7/8.8.7) id QAA14982; Fri, 26 Jun 1998 16:33:58 -0400 Original-To: ding@gnus.org X-Face: "5(T0tZd{6}pd~YzBG8O/*EW,.]6]@`m^e;fv65W^Y&=d"M\1H}>T~4_.kcDD.O~y3k)a6h R;Nmi>9|>Nm${2IpM0^RcUEa\jcq?KOP)C&~x51l~zCHTulL^_T|u0I^kB'z@]{`2YjQu In-Reply-To: Michael Welsh Duggan's message of "Fri, 26 Jun 1998 20:03:31 GMT" Original-Lines: 24 User-Agent: Gnus v5.6.16/XEmacs 20.4 - "Emerald" Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:15418 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:15418 Michael Welsh Duggan 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)