]> code.delx.au - gnu-emacs/commitdiff
Fix bug #9521 with forwarding MIME messages in Rmail.
authorMark Lillibridge <mark.lillibridge@hp.com>
Sat, 29 Dec 2012 08:50:27 +0000 (10:50 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 29 Dec 2012 08:50:27 +0000 (10:50 +0200)
 lisp/mail/rmailmm.el (rmail-insert-mime-forwarded-message): Insert
 the undecoded text of the message being forwarded.

lisp/ChangeLog
lisp/mail/rmailmm.el

index 6aabc603518fc60986d2baf519b317daffb3fd80..43af990485925303d6a79e05f452f0b12a667f38 100644 (file)
@@ -1,3 +1,8 @@
+2012-12-29  Mark Lillibridge  <mark.lillibridge@hp.com>
+
+       * mail/rmailmm.el (rmail-insert-mime-forwarded-message): Insert
+       the undecoded text of the message being forwarded.  (Bug#9521)
+
 2012-12-28  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
index 11bccd59765c9f5cd48c3fa864770276770f1997..a9bbe6c2da3d868aff7eacfca247c8424b17e190 100644 (file)
@@ -1368,8 +1368,8 @@ This is the usual value of `rmail-insert-mime-forwarded-message-function'."
   (let ((message-buffer
         (with-current-buffer forward-buffer
           (if rmail-buffer-swapped
-              forward-buffer
-            rmail-view-buffer))))
+              rmail-view-buffer
+            forward-buffer))))
     (save-restriction
       (narrow-to-region (point) (point))
       (message-forward-make-body-mime message-buffer))))