# HG changeset patch # User Dave Love # Date 1022511152 0 # Node ID ab5d1c9248c4fc5fae667a8272d0648899c1a8f5 # Parent df76808e99c0444a7fa6b7e06fffded11f6fd994 (revert-buffer, recover-file): Use utf-8-emacs coding system, not emacs-mule. diff -r df76808e99c0 -r ab5d1c9248c4 lisp/files.el --- a/lisp/files.el Mon May 27 14:51:57 2002 +0000 +++ b/lisp/files.el Mon May 27 14:52:32 2002 +0000 @@ -3071,7 +3071,7 @@ (let ((coding-system-for-read ;; Auto-saved file shoule be read without ;; any code conversion. - (if auto-save-p 'emacs-mule-unix + (if auto-save-p 'utf-8-emacs-unix coding-system-for-read))) ;; Note that this preserves point in an intelligent way. (insert-file-contents file-name (not auto-save-p) @@ -3128,7 +3128,7 @@ ;; Keep the current buffer-file-coding-system. (coding-system buffer-file-coding-system) ;; Auto-saved file shoule be read without any code conversion. - (coding-system-for-read 'emacs-mule-unix)) + (coding-system-for-read 'utf-8-emacs-unix)) (erase-buffer) (insert-file-contents file-name nil) (set-buffer-file-coding-system coding-system))