From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/60694 Path: news.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.general Subject: Re: Quoted material manipulation commands Date: Wed, 03 Aug 2005 22:30:58 +0200 Organization: http://purl.org/harder/ Message-ID: <87irymkbjx.fsf@Jesper-Harders-Computer.local> References: <87ek9cw6gu.fsf@windlord.stanford.edu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1123177520 2802 80.91.229.2 (4 Aug 2005 17:45:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 4 Aug 2005 17:45:20 +0000 (UTC) Original-X-From: ding-owner+M9229=ding+2Daccount=gmane.org@lists.math.uh.edu Thu Aug 04 19:45:10 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1E0jkg-0005EK-DX for ding-account@gmane.org; Thu, 04 Aug 2005 19:43:30 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1E0jkf-0002OF-04 for ding-account@gmane.org; Thu, 04 Aug 2005 12:43:29 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1E0PtT-0006Yn-00 for ding@lists.math.uh.edu; Wed, 03 Aug 2005 15:31:15 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1E0PtR-0001Xm-8u for ding@lists.math.uh.edu; Wed, 03 Aug 2005 15:31:13 -0500 Original-Received: from cicero0.cybercity.dk ([212.242.40.52]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1E0OxK-0000Mx-00 for ; Wed, 03 Aug 2005 21:31:10 +0200 Original-Received: from user3.cybercity.dk (user3.cybercity.dk [212.242.41.36]) by cicero0.cybercity.dk (Postfix) with ESMTP id 81B8C29602 for ; Wed, 3 Aug 2005 22:31:07 +0200 (CEST) Original-Received: from Jesper-Harders-Computer.local (port540.ds1-amb.adsl.cybercity.dk [212.242.232.41]) by user3.cybercity.dk (Postfix) with ESMTP id 8F24593C7A for ; Wed, 3 Aug 2005 22:31:04 +0200 (CEST) Original-To: ding@gnus.org X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; (Russ Allbery's message of "Tue, 02 Aug 2005 11:15:29 -0700") User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (darwin) X-Spam-Score: -4.9 (----) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:60694 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:60694 Russ Allbery writes: > M-RET doesn't appear to reformat the new paragraph any more. Did I break > something, or was that feature removed? It's also broken for me. This patch seems to fix it, although I didn't really look into which change caused it. Can someone tell? diff -c /Users/harder/gnus/lisp/message.el /Users/harder/cvsgnus/lisp/message.el *** /Users/harder/gnus/lisp/message.el Sun Jul 24 20:31:17 2005 --- /Users/harder/cvsgnus/lisp/message.el Wed Aug 3 22:25:04 2005 *************** *** 2894,2900 **** "Insert four newlines, and then reformat if inside quoted text. Prefix arg means justify as well." (interactive (list (if current-prefix-arg 'full))) ! (let (quoted point beg end leading-space bolp) (setq point (point)) (beginning-of-line) (setq beg (point)) --- 2894,2900 ---- "Insert four newlines, and then reformat if inside quoted text. Prefix arg means justify as well." (interactive (list (if current-prefix-arg 'full))) ! (let (quoted point beg end leading-space bolp fill-paragraph-function) (setq point (point)) (beginning-of-line) (setq beg (point)) Diff finished. Wed Aug 3 22:26:02 2005