diff options
| author | Stefan Monnier | 2008-03-12 20:53:46 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-03-12 20:53:46 +0000 |
| commit | ca874c230f89fd5ac8cc9aa12b30ff1551108f12 (patch) | |
| tree | fc150b4dc3e45b26f95cfb47b9eaaf5de89c4669 /lisp/mail | |
| parent | 058f4002400d8808c5b9f7d99e5c9fb5fdc01697 (diff) | |
| download | emacs-ca874c230f89fd5ac8cc9aa12b30ff1551108f12.tar.gz emacs-ca874c230f89fd5ac8cc9aa12b30ff1551108f12.zip | |
(binhex-decode-region-internal): Use set-buffer-multibyte rather than
setting default-enable-multibyte-characters.
Diffstat (limited to 'lisp/mail')
| -rw-r--r-- | lisp/mail/binhex.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/binhex.el b/lisp/mail/binhex.el index 7b83c978bab..f8b869a7bf1 100644 --- a/lisp/mail/binhex.el +++ b/lisp/mail/binhex.el | |||
| @@ -222,8 +222,8 @@ If HEADER-ONLY is non-nil only decode header and return filename." | |||
| 222 | (save-excursion | 222 | (save-excursion |
| 223 | (goto-char start) | 223 | (goto-char start) |
| 224 | (when (re-search-forward binhex-begin-line end t) | 224 | (when (re-search-forward binhex-begin-line end t) |
| 225 | (let (default-enable-multibyte-characters) | 225 | (setq work-buffer (generate-new-buffer " *binhex-work*")) |
| 226 | (setq work-buffer (generate-new-buffer " *binhex-work*"))) | 226 | (with-current-buffer work-buffer (set-buffer-multibyte nil)) |
| 227 | (beginning-of-line) | 227 | (beginning-of-line) |
| 228 | (setq bits 0 counter 0) | 228 | (setq bits 0 counter 0) |
| 229 | (while tmp | 229 | (while tmp |