(gnus-inews-yank-articles): Delete newlines only if they are excessive.
authoryamaoka <yamaoka>
Mon, 31 Jan 2005 00:41:55 +0000 (00:41 +0000)
committeryamaoka <yamaoka>
Mon, 31 Jan 2005 00:41:55 +0000 (00:41 +0000)
ChangeLog
lisp/gnus-msg.el

index c6fe76b..4ed0dbf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * lisp/gnus-msg.el (gnus-inews-yank-articles): Delete newlines
+       only if they are excessive.
+
 2005-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * lisp/message.el (invisible-region): Don't advise it when
index 738f9c7..da6fede 100644 (file)
@@ -1,6 +1,6 @@
 ;;; gnus-msg.el --- mail and post interface for Semi-gnus
 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
-;;        Free Software Foundation, Inc.
+;;        2005 Free Software Foundation, Inc.
 
 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
 ;;     Lars Magne Ingebrigtsen <larsi@gnus.org>
@@ -838,7 +838,10 @@ active, the entire article will be yanked."
                   '(References . message-shorten-references)))
         (list (cons 'References
                     (mapconcat 'identity (nreverse refs) " "))))
-       (backward-delete-char 1))
+       (delete-region (point)
+                      (progn
+                        (skip-chars-backward "\n")
+                        (1+ (point)))))
       (setq beg (mark t))
       (pop-mark))