]> git.eshelyaron.com Git - emacs.git/commitdiff
(revert-buffer): Use new insert-file-contents replace arg.
authorRichard M. Stallman <rms@gnu.org>
Thu, 17 Feb 1994 08:19:58 +0000 (08:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 17 Feb 1994 08:19:58 +0000 (08:19 +0000)
lisp/files.el

index 16ba5280be9627221ed9a104a9bf8777cd574b02..7efca8ac1881c21b5cc81242ff2f75248f57508b 100644 (file)
@@ -1805,9 +1805,9 @@ beginning and `after-revert-hook' at the end."
                 ;; so that we don't try to lock the file.
                 (let ((buffer-file-name nil))
                   (or auto-save-p
-                      (unlock-buffer))
-                  (erase-buffer))
-                (insert-file-contents file-name (not auto-save-p))))
+                      (unlock-buffer)))
+                (insert-file-contents file-name (not auto-save-p)
+                                      nil nil t)))
             (goto-char (min opoint (point-max)))
             (after-find-file nil nil t)
             (run-hooks 'after-revert-hook)