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 | a92db45a68c06851d83275d5197e153ae62a221f (patch) | |
tree | 6b3598a0282f4f9b156f57d7d8ac8430ee1e85ae /lisp/mail/sendmail.el | |
parent | 06fb6aabb2290c7f510bdc1f2f6e837e8810f4c9 (diff) | |
download | emacs-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.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) |