From 0432cccc3d9b37174c315837af50580e91453793 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Thu, 27 Jun 2002 15:25:46 +0000 Subject: [PATCH] (load-with-code-conversion): Fix coding-system-type test. --- lisp/international/mule.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5