aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/files.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/files.el b/lisp/files.el
index fd97afa3073..c098cbcc7ff 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -3461,11 +3461,10 @@ Auto Revert Mode sets NOCONFIRM to t. The function should return
3461non-nil if the buffer should be reverted. The buffer is current 3461non-nil if the buffer should be reverted. The buffer is current
3462when this function is called. 3462when this function is called.
3463 3463
3464The idea behind the NOCONFIRM argument is that the same function 3464The idea behind the NOCONFIRM argument is that it should be t if
3465can also be used to ask the user whether the buffer should be 3465the buffer is going to be reverted without asking the user. In
3466reverted. In such a situation one has to be less careful about, 3466such situations, one has to be careful with potentially time
3467say, reverting remote files, than if the function is called at 3467consuming operations.")
3468regular intervals by Auto Revert Mode.")
3469 3468
3470(defvar before-revert-hook nil 3469(defvar before-revert-hook nil
3471 "Normal hook for `revert-buffer' to run before reverting. 3470 "Normal hook for `revert-buffer' to run before reverting.