diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 1996-08-30 00:27:46 +0000 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 1996-08-30 00:27:46 +0000 |
commit | acb80176e68cd47e05607a9ca921b44272b04042 (patch) | |
tree | 20ed46c95c69e7c6233e7b73b1dba6eca80dd983 /lisp | |
parent | fdef00b61fb32080d71112c545ea2a95fad09e50 (diff) | |
download | emacs-acb80176e68cd47e05607a9ca921b44272b04042.tar.gz |
1996-08-29 Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
* message.el (message-do-fcc): Supply the FROM-GNUS parameter to
`rmail-output'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/message.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/message.el b/lisp/message.el index 30e6d698f7b..ec0453dfb7d 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -1790,7 +1790,7 @@ the user from the mailer." (not (eq message-fcc-handler-function 'rmail-output))) (funcall message-fcc-handler-function file) (if (and (file-readable-p file) (mail-file-babyl-p file)) - (rmail-output file 1) + (rmail-output file 1 nil t) (let ((mail-use-rfc822 t)) (rmail-output file 1 t t)))))) (kill-buffer (current-buffer))))) |