aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2001-01-18 08:01:34 +0000
committerKenichi Handa <[email protected]>2001-01-18 08:01:34 +0000
commit9be82109cf415740771cdd7207e76739cdbff5bd (patch)
tree0d5f68cdd0a2ad17dcc20ca3c543628481d948d8 /lisp/mail
parent6b453381c0910bec17a022489c22beec834ba524 (diff)
(mail-setup): Call set-buffer-multibyte because
kill-local-variable doesn't work for enable-multibyte-characters.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/sendmail.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index de01fd9cd0..9042b69dc1 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -368,7 +368,9 @@ actually occur.")
(build-mail-aliases))))
;; Don't leave this around from a previous message.
(kill-local-variable 'buffer-file-coding-system)
- (kill-local-variable 'enable-multibyte-characters)
+ ;; This doesn't work for enable-multibyte-characters.
+ ;; (kill-local-variable 'enable-multibyte-characters)
+ (set-buffer-multibyte default-enable-multibyte-characters)
(if current-input-method
(inactivate-input-method))
(setq mail-send-actions actions)