changeset 35383:2c239dcc208a

(mail-setup): Call set-buffer-multibyte because kill-local-variable doesn't work for enable-multibyte-characters.
author Kenichi Handa <handa@m17n.org>
date Thu, 18 Jan 2001 08:01:34 +0000
parents df376909c8ce
children e50a7f9ce65e
files lisp/mail/sendmail.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/sendmail.el	Thu Jan 18 08:01:14 2001 +0000
+++ b/lisp/mail/sendmail.el	Thu Jan 18 08:01:34 2001 +0000
@@ -368,7 +368,9 @@
 	    (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)