diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-11-16 22:22:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-11-16 22:22:18 +0000 |
commit | 63fcfa450f224300fc829c8acef36932c3d1b1e1 (patch) | |
tree | 047d4a639c00ee627345bcd02c2f9213cc274f31 /lisp | |
parent | f832e8542296babdf4b28affdebdc78636aa8627 (diff) | |
download | emacs-63fcfa450f224300fc829c8acef36932c3d1b1e1.tar.gz |
(smtpmail-send-it): Use insert-buffer-contents.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mail/smtpmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 55a4d060fad..1a280ffc7f4 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el @@ -365,7 +365,7 @@ This is relative to `smtpmail-queue-dir'.") (make-directory smtpmail-queue-dir t)) (with-current-buffer buffer-data (erase-buffer) - (insert-buffer tembuf) + (insert-buffer-contents tembuf) (write-file file-data) (set-buffer buffer-elisp) (erase-buffer) |