From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/60693 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:44:21 +0200 Organization: http://purl.org/harder/ Message-ID: <87br4ekaxm.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 1123177510 2756 80.91.229.2 (4 Aug 2005 17:45:10 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 4 Aug 2005 17:45:10 +0000 (UTC) Original-X-From: ding-owner+M9230=ding+2Daccount=gmane.org@lists.math.uh.edu Thu Aug 04 19:45:07 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1E0jl0-0005Hk-KK for ding-account@gmane.org; Thu, 04 Aug 2005 19:43:50 +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 1E0jkz-0002Ov-01 for ding-account@gmane.org; Thu, 04 Aug 2005 12:43:49 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1E0Q6P-0006hC-00 for ding@lists.math.uh.edu; Wed, 03 Aug 2005 15:44:37 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1E0Q6O-0001iG-KD for ding@lists.math.uh.edu; Wed, 03 Aug 2005 15:44:36 -0500 Original-Received: from cicero2.cybercity.dk ([212.242.40.53]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1E0PAH-0000Uu-00 for ; Wed, 03 Aug 2005 21:44:33 +0200 Original-Received: from user4.cybercity.dk (user4.cybercity.dk [212.242.41.50]) by cicero2.cybercity.dk (Postfix) with ESMTP id EF71118F7C9 for ; Wed, 3 Aug 2005 22:44:31 +0200 (CEST) Original-Received: from Jesper-Harders-Computer.local (port540.ds1-amb.adsl.cybercity.dk [212.242.232.41]) by user4.cybercity.dk (Postfix) with ESMTP id 91F2C50196 for ; Wed, 3 Aug 2005 22:44:31 +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:60693 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:60693 Russ Allbery writes: > C-c C-z now trims one fewer blank line. This is driving me nuts, as it's > destroying my finger memory. Is there a way to get back to the previous > behavior, or do I need to revert back to my own private implementation of > that feature? Does this work the way you want? 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:41:50 2005 *************** *** 2888,2894 **** (end-of-line -1))) (unless (= point (point)) (kill-region point (point)) ! (insert "\n")))))) (defun message-newline-and-reformat (&optional arg not-break) "Insert four newlines, and then reformat if inside quoted text. --- 2888,2895 ---- (end-of-line -1))) (unless (= point (point)) (kill-region point (point)) ! (unless (bol) ! (insert "\n"))))))) (defun message-newline-and-reformat (&optional arg not-break) "Insert four newlines, and then reformat if inside quoted text. Diff finished. Wed Aug 3 22:42:30 2005