diff options
| -rw-r--r-- | lisp/files.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/files.el b/lisp/files.el index 16ba5280be9..7efca8ac188 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -1805,9 +1805,9 @@ beginning and `after-revert-hook' at the end." | |||
| 1805 | ;; so that we don't try to lock the file. | 1805 | ;; so that we don't try to lock the file. |
| 1806 | (let ((buffer-file-name nil)) | 1806 | (let ((buffer-file-name nil)) |
| 1807 | (or auto-save-p | 1807 | (or auto-save-p |
| 1808 | (unlock-buffer)) | 1808 | (unlock-buffer))) |
| 1809 | (erase-buffer)) | 1809 | (insert-file-contents file-name (not auto-save-p) |
| 1810 | (insert-file-contents file-name (not auto-save-p)))) | 1810 | nil nil t))) |
| 1811 | (goto-char (min opoint (point-max))) | 1811 | (goto-char (min opoint (point-max))) |
| 1812 | (after-find-file nil nil t) | 1812 | (after-find-file nil nil t) |
| 1813 | (run-hooks 'after-revert-hook) | 1813 | (run-hooks 'after-revert-hook) |