From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/2438 Path: news.gmane.org!not-for-mail From: Benjamin Rutt Newsgroups: gmane.emacs.gnus.user Subject: gnus 5.10.1: message-kill-to-signature doesn't? Date: Tue, 06 May 2003 20:16:05 -0400 Organization: The Ohio State University Dept. of Computer and Info. Science Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1138668869 15122 80.91.229.2 (31 Jan 2006 00:54:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:54:29 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:30:41 2006 Original-Path: quimby.gnus.org!newsfeed1.e.nsc.no!nsc.no!nextra.com!news.tele.dk!news.tele.dk!small.news.tele.dk!news.maxwell.syr.edu!news.cis.ohio-state.edu!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: gamma.cis.ohio-state.edu Mail-Copies-To: nobody User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3.50 (usg-unix-v) Cancel-Lock: sha1:S3r1g4vIoHqUCAB0d0st74pYFpE= Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:2578 Original-Lines: 38 X-Gnus-Article-Number: 2578 Tue Jan 17 17:30:41 2006 Xref: news.gmane.org gmane.emacs.gnus.user:2438 Archived-At: --=-=-= In gnus 5.10.1, is it true that the `message-kill-to-signature' function has changed somehow? If you place some text (like foo bar, below) on the last line just before the signature, and then place some text before it, like below, and leave the cursor where the exclamation point is below, it kills most of the lines between the point and the signature, but it leaves the 'foo bar'. Is anyone else seeing this? Or was it always like this? Maybe it should be changed so it really does kill all text up to the signature? I've attached a patch that does this. !blah blah blah foo bar -- Benjamin --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=message.el.patch --- message.el.orig 2003-05-01 09:13:04.000000000 -0400 +++ message.el 2003-05-06 20:11:36.827783000 -0400 @@ -2627,7 +2627,7 @@ (message-goto-signature) (unless (eobp) (forward-line -2)) - (kill-region point (point)) + (kill-region point (line-end-position)) (unless (bolp) (insert "\n")))) --=-=-=--