(mail-setup): Call set-buffer-multibyte because
authorKenichi Handa <handa@m17n.org>
Thu, 18 Jan 2001 08:01:34 +0000 (08:01 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 18 Jan 2001 08:01:34 +0000 (08:01 +0000)
kill-local-variable doesn't work for enable-multibyte-characters.

lisp/mail/sendmail.el

index de01fd9cd044f750a6374536ed4ea96674f48a35..9042b69dc1c47cf1f9e76cc29248d6a5bdafaff8 100644 (file)
@@ -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)