diff options
author | Kenichi Handa <handa@m17n.org> | 1997-09-12 01:46:32 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-09-12 01:46:32 +0000 |
commit | a768b5f3e604d15bd2b80faf7495e85e6e7c9a6e (patch) | |
tree | 2b9808bd1ba0a46eca957f84574080f8b3bb7ef9 /lisp/mail/sendmail.el | |
parent | 436c8585169caaf61950a01c689ff49c8576d3cd (diff) | |
download | emacs-a768b5f3e604d15bd2b80faf7495e85e6e7c9a6e.tar.gz |
(sendmail-send-it): If both
buffer-file-coding-system and sendmail-coding-system are nil, use
iso-latin-1 for encoding.
Diffstat (limited to 'lisp/mail/sendmail.el')
-rw-r--r-- | lisp/mail/sendmail.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 1035aba71cb..fdf4e487d97 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -623,7 +623,8 @@ the user from the mailer." (if (local-variable-p 'buffer-file-coding-system) buffer-file-coding-system (or sendmail-coding-system - default-buffer-file-coding-system)))) + default-buffer-file-coding-system + 'iso-latin-1)))) (unwind-protect (save-excursion (set-buffer tembuf) |