# HG changeset patch # User Richard M. Stallman # Date 893056097 0 # Node ID f000ba6592414b3e1798ad3470c09464f1189c46 # Parent 0fbfcd0c411d3f75aefd256b1415ceba7fd1a867 (load-with-code-conversion): Undo previous change. Instead, pass the UNIBYTE arg to eval-buffer. diff -r 0fbfcd0c411d -r f000ba659241 lisp/international/mule.el --- a/lisp/international/mule.el Mon Apr 20 06:37:57 1998 +0000 +++ b/lisp/international/mule.el Mon Apr 20 07:08:17 1998 +0000 @@ -45,7 +45,12 @@ (let* ((buffer ;; To avoid any autoloading, set default-major-mode to ;; fundamental-mode. - (let ((default-major-mode 'fundamental-mode)) + ;; So that we don't get completely screwed if the + ;; file is encoded in some complicated character set, + ;; read it with real decoding, as a multibyte buffer, + ;; even if this is a --unibyte Emacs session. + (let ((default-major-mode 'fundamental-mode) + (default-enable-multibyte-characters t)) ;; We can't use `generate-new-buffer' because files.el ;; is not yet loaded. (get-buffer-create (generate-new-buffer-name " *load*")))) @@ -66,7 +71,11 @@ ;; Make `kill-buffer' quiet. (set-buffer-modified-p nil)) ;; Have the original buffer current while we eval. - (eval-buffer buffer nil file)) + (eval-buffer buffer nil file + ;; If this Emacs is running with --unibyte, + ;; convert multibyte strings to unibyte + ;; after reading them. + (not default-enable-multibyte-characters))) (let (kill-buffer-hook kill-buffer-query-functions) (kill-buffer buffer))) (let ((hook (assoc file after-load-alist)))