From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9016 Path: main.gmane.org!not-for-mail From: Hrvoje Niksic Newsgroups: gmane.emacs.gnus.general Subject: A small, but useful patch! Date: 27 Nov 1996 16:57:32 +0100 Sender: hniksic@public.srce.hr Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035149106 15982 80.91.224.250 (20 Oct 2002 21:25:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:25:06 +0000 (UTC) Return-Path: Original-Received: (qmail 12798 invoked from smtpd); 27 Nov 1996 16:34:20 -0000 Original-Received: from ifi.uio.no (0@129.240.64.2) by deanna.miranova.com with SMTP; 27 Nov 1996 16:34:18 -0000 Original-Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Wed, 27 Nov 1996 16:57:51 +0100 Original-Received: from hniksic@localhost by jagor.srce.hr (8.8.3/8.6.12.CI) id QAA28242; Wed, 27 Nov 1996 16:57:33 +0100 (MET) Original-To: ding@ifi.uio.no X-URL: ftp://gnjilux.cc.fer.hr/pub/unix/util/wget/ X-Attribution: Hrv X-Face: &}4JQk=L;e.~x+|eo]#DGk@x3~ed!.~lZ}YQcYb7f[WL9L'Z*+OyA\nAEL1M(".[qvI#a2E 6WYI5>>e7'@_)3Ol9p|Nn2wNa/;~06jL*B%tTcn/XvhAu7qeES0\|MF%$;sI#yn1+y" Original-Lines: 33 X-Mailer: Red Gnus v0.71/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:9016 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9016 The problem with message-indent-citation is that it adds the message-yank-prefix even to empty lines, or to lines consisting of white-space only, so that commands like M-{ and M-} (or M-up and M-down for X-oriented types) don't work on quoted text. This patchlet will take care of that: *** message.el.orig Wed Nov 27 16:49:41 1996 --- message.el Wed Nov 27 16:54:27 1996 *************** *** 1348,1354 **** (save-excursion (goto-char start) (while (< (point) (mark t)) ! (insert message-yank-prefix) (forward-line 1))) (goto-char start)))) --- 1348,1355 ---- (save-excursion (goto-char start) (while (< (point) (mark t)) ! (unless (looking-at "\\s-*$") ! (insert message-yank-prefix)) (forward-line 1))) (goto-char start)))) After that, everything works beautifully! -- Hrvoje Niksic | Hocemo 101-icu! --------------------------------+-------------------------------- "What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against?" -- Larry Wall