]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-output): Make sure headers are properly
authorHenrik Enberg <henrik.enberg@telia.com>
Wed, 25 Jan 2006 20:22:06 +0000 (20:22 +0000)
committerHenrik Enberg <henrik.enberg@telia.com>
Wed, 25 Jan 2006 20:22:06 +0000 (20:22 +0000)
hidden after output.  Avoid pointless with-current-buffer call.

lisp/mail/ChangeLog
lisp/mail/rmailout.el

index c7b7c24da7dd638479c67af13ad68760d8e9742a..ffd555d6ac58d67da2dd3e7c2bb6c3885a8f8817 100644 (file)
@@ -7,7 +7,8 @@
 
        * rmailout.el (rmail-delete-unwanted-fields): Handle mbox format.
        (rmail-output): Error when target is a BABYL file.  Handle MIME
-       charset.
+       charset.  Make sure headers are properly hidden after output.
+       Avoid pointless with-current-buffer call.
 
 2006-01-24  Alex Schroeder  <alex@gnu.org>
 
index fa99880ff8e3e6188746903029c75c7125812c40..db11cceae05ef524feb496e9a6a521cd965c605a 100644 (file)
@@ -203,7 +203,8 @@ The optional fourth argument FROM-GNUS is set when called from GNUS."
                      (insert msg-string)))))))
          (unless noattribute
            (when (equal major-mode 'rmail-mode)
-             (rmail-set-attribute "filed" t)))
+             (rmail-set-attribute "filed" t)
+             (rmail-header-hide-headers)))
          (setq count (1- count))
          (unless from-gnus
            (let ((next-message-p
@@ -212,12 +213,9 @@ The optional fourth argument FROM-GNUS is set when called from GNUS."
                     (when (> count 0)
                       (rmail-next-undeleted-message 1))))
                  (num-appended (- orig-count count)))
-             (when (and next-message-p original-headers-p)
-               (rmail-toggle-header))
              (when (and (> count 0) (not next-message-p))
-               (error (with-current-buffer rmailbuf
-                        (format "Only %d message%s appended" num-appended
-                                (if (= num-appended 1) "" "s"))))
+               (error (format "Only %d message%s appended" num-appended
+                              (if (= num-appended 1) "" "s")))
                (setq count 0)))))))))
 
 ;;;###autoload