Synch to Oort Gnus.
authoryamaoka <yamaoka>
Wed, 19 Feb 2003 06:42:17 +0000 (06:42 +0000)
committeryamaoka <yamaoka>
Wed, 19 Feb 2003 06:42:17 +0000 (06:42 +0000)
lisp/ChangeLog
lisp/gnus-msg.el

index 89f61c4..9548590 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-msg.el (gnus-copy-article-buffer): Copy an article header
+       even if there's just a header.
+
 2003-02-19  Jesper Harder  <harder@ifa.au.dk>
 
        * message.el (message-fix-before-sending): Fix highlighting of
index 2488063..2a66888 100644 (file)
@@ -933,7 +933,9 @@ header line with the old Message-ID."
              (forward-line 1))
            (let ((mail-header-separator ""))
              (setq beg (point)
-                   end (or (message-goto-body) beg)))
+                   end (or (message-goto-body)
+                           ;; There may be just a header.
+                           (point-max))))
            ;; Delete the headers from the displayed articles.
            (set-buffer gnus-article-copy)
            (let ((mail-header-separator ""))