summaryrefslogtreecommitdiff
path: root/lisp/mail/sendmail.el
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1997-09-12 01:46:32 +0000
committerKenichi Handa <handa@m17n.org>1997-09-12 01:46:32 +0000
commita92db45a68c06851d83275d5197e153ae62a221f (patch)
tree6b3598a0282f4f9b156f57d7d8ac8430ee1e85ae /lisp/mail/sendmail.el
parent06fb6aabb2290c7f510bdc1f2f6e837e8810f4c9 (diff)
downloademacs-a92db45a68c06851d83275d5197e153ae62a221f.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.el3
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)