summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/autorevert.el11
1 files changed, 10 insertions, 1 deletions
diff --git a/lisp/autorevert.el b/lisp/autorevert.el
index b8693dfb210..d2a6213c3a8 100644
--- a/lisp/autorevert.el
+++ b/lisp/autorevert.el
@@ -168,7 +168,7 @@ Thus, with this setting, Emacs might be non-responsive at times."
(defcustom auto-revert-verbose t
"When nil, Auto-Revert Mode does not generate any messages.
-When non-nil, a message is generated whenever a file is reverted."
+When non-nil, a message is generated whenever a buffer is reverted."
:group 'auto-revert
:type 'boolean)
@@ -346,6 +346,9 @@ Auto Revert mode is a minor mode that affects only the current
buffer. When enabled, it reverts the buffer when the file on
disk changes.
+When a buffer is reverted, a message is generated. This can be
+suppressed by setting `auto-revert-verbose' to nil.
+
Use `global-auto-revert-mode' to automatically revert all buffers.
Use `auto-revert-tail-mode' if you know that the file will only grow
without being changed in the part that is already in the buffer."
@@ -388,6 +391,9 @@ You can edit the buffer and turn this mode off and on again as
you please. But make sure the background process has stopped
writing before you save the file!
+When a buffer is reverted, a message is generated. This can be
+suppressed by setting `auto-revert-verbose' to nil.
+
Use `auto-revert-mode' for changes other than appends!"
:group 'find-file :lighter auto-revert-tail-mode-text
(when auto-revert-tail-mode
@@ -452,6 +458,9 @@ documentation of that variable. It ignores buffers with modes
matching `global-auto-revert-ignore-modes', and buffers with a
non-nil vale of `global-auto-revert-ignore-buffer'.
+When a buffer is reverted, a message is generated. This can be
+suppressed by setting `auto-revert-verbose' to nil.
+
This function calls the hook `global-auto-revert-mode-hook'.
It displays the text that `global-auto-revert-mode-text'
specifies in the mode line."