From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/43989 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: article body filling: fill-prefix too long for specified width Date: Mon, 25 Mar 2002 21:57:28 +0900 Organization: Emacsen advocacy group Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1017061111 15328 127.0.0.1 (25 Mar 2002 12:58:31 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 25 Mar 2002 12:58:31 +0000 (UTC) Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16pU3S-0003z7-00 for ; Mon, 25 Mar 2002 13:58:30 +0100 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 16pU2v-00074T-00; Mon, 25 Mar 2002 06:57:57 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 25 Mar 2002 06:58:04 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id GAA24950 for ; Mon, 25 Mar 2002 06:57:53 -0600 (CST) Original-Received: (qmail 29944 invoked by alias); 25 Mar 2002 12:57:41 -0000 Original-Received: (qmail 29939 invoked from network); 25 Mar 2002 12:57:41 -0000 Original-Received: from groundpoundrecords.com (HELO mars.web-hosting.com) (207.228.244.150) by gnus.org with SMTP; 25 Mar 2002 12:57:41 -0000 Original-Received: (from yamaoka@localhost) by mars.web-hosting.com (8.11.1/8.11.1) id g2PCvdn13108; Mon, 25 Mar 2002 07:57:39 -0500 (EST) Original-To: ding@gnus.org X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.2.50 (sparc-sun-solaris2.6) Cancel-Lock: sha1:+6GB0SixhSLJSwoijL1tKp3R/9I= Original-Lines: 48 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:43989 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:43989 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable >>>>> In =20 >>>>> Pavel@Janik.cz (Pavel Jan=C3=ADk) wrote: > I have received attached e-mail, which can not be displayed in Gnus > (from CVS) running in current CVS Emacs. The message > fill-prefix too long for specified width > is shown. fill-column is 75 in my setup. Additional details on > request. I still have this article so I can test your changes. > Debugger entered--Lisp error: (error "fill-prefix too long for sp... > signal(error ("fill-prefix too long for specified width")) > error("fill-prefix too long for specified width") > fill-delete-prefix(1889 # fill-region-as-paragraph(1889 1966 left nosqueeze) > fill-region(1889 1966 left nosqueeze) > fill-flowed() > mm-inline-text((# ("text/plain" (charset . "ISO-8... I'm not sure of myself but I think the value of `fill-prefix' should be controlled by flow-fill.el, however it will be altered by `fill-region-as-paragraph' if it isn't specified. Here's a patch for a tentative plan: --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=flow-fill.el.diff --- flow-fill.el~ 2002-01-14 22:01:23.000000000 +0000 +++ flow-fill.el 2002-03-25 12:55:36.039833946 +0000 @@ -134,7 +134,8 @@ (end-of-line)) (unless sig (let ((fill-prefix (when quote (concat quote " "))) - (fill-column (eval fill-flowed-display-column))) + (fill-column (eval fill-flowed-display-column)) + adaptive-fill-mode) (fill-region (fill-flowed-point-at-bol) (min (1+ (fill-flowed-point-at-eol)) (point-max)) 'left 'nosqueeze)))))))) --=-=-=--