From: Dave Love Date: Thu, 27 Jun 2002 15:25:46 +0000 (+0000) Subject: (load-with-code-conversion): Fix X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~619 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0432cccc3d9b37174c315837af50580e91453793;p=emacs.git (load-with-code-conversion): Fix coding-system-type test. --- diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 52a485f90d1..705c9a8f4f2 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -271,7 +271,7 @@ Return t if file exists." ;; Otherwise, eval-buffer might try to interpret random ;; binary junk as multibyte characters. (if (and enable-multibyte-characters - (or (eq (coding-system-type last-coding-system-used) 5) + (or (eq (coding-system-type last-coding-system-used) 'raw-text) (eq last-coding-system-used 'no-conversion))) (set-buffer-multibyte nil)) ;; Make `kill-buffer' quiet.