From: Dave Love Date: Thu, 27 Jun 2002 18:37:40 +0000 (+0000) Subject: (load-with-code-conversion): Simplify last change. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~618 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=513dcb0ac654f6d8120084c766245698d0edd246;p=emacs.git (load-with-code-conversion): Simplify last change. --- diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 705c9a8f4f2..aae308ad5b3 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -271,8 +271,8 @@ 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) 'raw-text) - (eq last-coding-system-used 'no-conversion))) + (eq (coding-system-type last-coding-system-used) + 'raw-text)) (set-buffer-multibyte nil)) ;; Make `kill-buffer' quiet. (set-buffer-modified-p nil))