aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2002-07-30 00:44:36 +0000
committerKenichi Handa2002-07-30 00:44:36 +0000
commit01afb4f3ac01b890f2db3ccd453629115eed7dcb (patch)
treef65d36f01a4c9d52657c06066318edb2d03856dd
parent2341653d33a3e383eac600dd9e33703c618ac880 (diff)
downloademacs-01afb4f3ac01b890f2db3ccd453629115eed7dcb.tar.gz
emacs-01afb4f3ac01b890f2db3ccd453629115eed7dcb.zip
(revert-buffer): Fix previous change.
-rw-r--r--lisp/files.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 3fe0fa479ee..98cf8bfae56 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -3305,7 +3305,8 @@ non-nil, it is called instead of rereading visited file contents."
3305 ;; Auto-saved file shoule be read without 3305 ;; Auto-saved file shoule be read without
3306 ;; any code conversion. 3306 ;; any code conversion.
3307 (if auto-save-p 'emacs-mule-unix 3307 (if auto-save-p 'emacs-mule-unix
3308 coding-system-for-read))) 3308 (or coding-system-for-read
3309 buffer-file-coding-system))))
3309 ;; This force 3310 ;; This force
3310 ;; after-insert-file-set-buffer-file-coding-system 3311 ;; after-insert-file-set-buffer-file-coding-system
3311 ;; (called from insert-file-contents) to set 3312 ;; (called from insert-file-contents) to set