diff options
| author | Kenichi Handa | 2001-01-18 08:01:34 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-01-18 08:01:34 +0000 |
| commit | 9be82109cf415740771cdd7207e76739cdbff5bd (patch) | |
| tree | 0d5f68cdd0a2ad17dcc20ca3c543628481d948d8 | |
| parent | 6b453381c0910bec17a022489c22beec834ba524 (diff) | |
| download | emacs-9be82109cf415740771cdd7207e76739cdbff5bd.tar.gz emacs-9be82109cf415740771cdd7207e76739cdbff5bd.zip | |
(mail-setup): Call set-buffer-multibyte because
kill-local-variable doesn't work for enable-multibyte-characters.
| -rw-r--r-- | lisp/mail/sendmail.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index de01fd9cd04..9042b69dc1c 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -368,7 +368,9 @@ actually occur.") | |||
| 368 | (build-mail-aliases)))) | 368 | (build-mail-aliases)))) |
| 369 | ;; Don't leave this around from a previous message. | 369 | ;; Don't leave this around from a previous message. |
| 370 | (kill-local-variable 'buffer-file-coding-system) | 370 | (kill-local-variable 'buffer-file-coding-system) |
| 371 | (kill-local-variable 'enable-multibyte-characters) | 371 | ;; This doesn't work for enable-multibyte-characters. |
| 372 | ;; (kill-local-variable 'enable-multibyte-characters) | ||
| 373 | (set-buffer-multibyte default-enable-multibyte-characters) | ||
| 372 | (if current-input-method | 374 | (if current-input-method |
| 373 | (inactivate-input-method)) | 375 | (inactivate-input-method)) |
| 374 | (setq mail-send-actions actions) | 376 | (setq mail-send-actions actions) |