From: Karl Heuer Date: Mon, 23 Mar 1998 00:14:06 +0000 (+0000) Subject: (find-file-noselect): Use set-buffer-multibyte X-Git-Tag: emacs-20.3~1811 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2fa149b63f8004c8393a0f59f1eb85acc7a88c43;p=emacs.git (find-file-noselect): Use set-buffer-multibyte instead of setting enable-multibyte-characters. --- diff --git a/lisp/files.el b/lisp/files.el index 1060373f737..1790e1d194d 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -962,7 +962,7 @@ Optional second arg RAWFILE non-nil means the file is read literally." (setq backup-inhibited t))) (if rawfile (progn - (setq enable-multibyte-characters nil) + (set-buffer-multibyte nil) (make-local-variable 'find-file-literally) (setq find-file-literally t)) (after-find-file error (not nowarn))