summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-08-06 09:33:44 +0300
committerEli Zaretskii <eliz@gnu.org>2023-08-06 09:33:44 +0300
commitadff72dd1d2064101f49d7c87582fc434bbc15c3 (patch)
tree73dbe8a28e1749a5a384336cd1667de12c6b9d8f /lisp/files.el
parent1e8322bb26e4945de460780168732250bbd083d0 (diff)
downloademacs-adff72dd1d2064101f49d7c87582fc434bbc15c3.tar.gz
emacs-adff72dd1d2064101f49d7c87582fc434bbc15c3.tar.bz2
emacs-adff72dd1d2064101f49d7c87582fc434bbc15c3.zip
Fix reverting Rmail buffers
This bug happened because rmail.el relied on 'revert-buffer' to return non-nil when it succeeds to revert, but a recent change in 'revert-buffer' broke that promise in Emacs 29.1. * lisp/files.el (revert-buffer--default, revert-buffer): Doc fix. (revert-buffer): Return whatever 'revert-buffer-function' returns. (Bug#65071)
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el18
1 files changed, 12 insertions, 6 deletions
diff --git a/lisp/files.el b/lisp/files.el
index d325729bf4d..29d109ab385 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -6668,7 +6668,10 @@ This function binds `revert-buffer-in-progress-p' non-nil while it operates.
This function calls the function that `revert-buffer-function' specifies
to do the work, with arguments IGNORE-AUTO and NOCONFIRM.
The default function runs the hooks `before-revert-hook' and
-`after-revert-hook'
+`after-revert-hook'.
+Return value is whatever `revert-buffer-function' returns. For historical
+reasons, that return value is non-nil when `revert-buffer-function'
+succeeds in its job and returns non-nil.
Reverting a buffer will try to preserve markers in the buffer,
but it cannot always preserve all of them. For better results,
@@ -6685,17 +6688,20 @@ preserve markers and overlays, at the price of being slower."
(revert-buffer-preserve-modes preserve-modes)
(state (and (boundp 'read-only-mode--state)
(list read-only-mode--state))))
- (funcall (or revert-buffer-function #'revert-buffer--default)
- ignore-auto noconfirm)
- (when state
- (setq buffer-read-only (car state))
- (setq-local read-only-mode--state (car state)))))
+ ;; Return whatever 'revert-buffer-function' returns.
+ (prog1 (funcall (or revert-buffer-function #'revert-buffer--default)
+ ignore-auto noconfirm)
+ (when state
+ (setq buffer-read-only (car state))
+ (setq-local read-only-mode--state (car state))))))
(defun revert-buffer--default (ignore-auto noconfirm)
"Default function for `revert-buffer'.
The arguments IGNORE-AUTO and NOCONFIRM are as described for `revert-buffer'.
Runs the hooks `before-revert-hook' and `after-revert-hook' at the
start and end.
+The function returns non-nil if it reverts the buffer; signals
+an error if the buffer is not associated with a file.
Calls `revert-buffer-insert-file-contents-function' to reread the
contents of the visited file, with two arguments: the first is the file