aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1997-09-12 01:46:32 +0000
committerKenichi Handa1997-09-12 01:46:32 +0000
commita92db45a68c06851d83275d5197e153ae62a221f (patch)
tree6b3598a0282f4f9b156f57d7d8ac8430ee1e85ae
parent06fb6aabb2290c7f510bdc1f2f6e837e8810f4c9 (diff)
downloademacs-a92db45a68c06851d83275d5197e153ae62a221f.tar.gz
emacs-a92db45a68c06851d83275d5197e153ae62a221f.zip
(sendmail-send-it): If both
buffer-file-coding-system and sendmail-coding-system are nil, use iso-latin-1 for encoding.
-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."
623 (if (local-variable-p 'buffer-file-coding-system) 623 (if (local-variable-p 'buffer-file-coding-system)
624 buffer-file-coding-system 624 buffer-file-coding-system
625 (or sendmail-coding-system 625 (or sendmail-coding-system
626 default-buffer-file-coding-system)))) 626 default-buffer-file-coding-system
627 'iso-latin-1))))
627 (unwind-protect 628 (unwind-protect
628 (save-excursion 629 (save-excursion
629 (set-buffer tembuf) 630 (set-buffer tembuf)