From: yamaoka Date: Wed, 7 May 2003 03:11:03 +0000 (+0000) Subject: Synch to Gnus 200305070307. X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f53192e4a0a74030c4b1e74f17a3bbe262993ae2;p=elisp%2Fgnus.git- Synch to Gnus 200305070307. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4eb9564..fd04301 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2003-05-07 Jesper Harder + + * message.el (message-kill-to-signature): Fix. + 2003-05-06 Jesper Harder * gnus-sum.el (gnus-auto-goto-ignores): Docstring fix. diff --git a/lisp/message.el b/lisp/message.el index df307d8..13e284e 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -2883,7 +2883,7 @@ With the prefix argument FORCE, insert the header anyway." (let ((point (point))) (message-goto-signature) (unless (eobp) - (forward-line -2)) + (end-of-line -1)) (kill-region point (point)) (unless (bolp) (insert "\n"))))