aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-02-16 14:14:56 +0000
committerLuc Teirlinck2005-02-16 14:14:56 +0000
commit5433e5788e9aa9cb07bbdc841e40030a416bb427 (patch)
treeefaf816dcbd125a71865834b33aec980b2a188a1
parenta29c9707c74dbf2cc58192a0299c2e42677bc80d (diff)
downloademacs-5433e5788e9aa9cb07bbdc841e40030a416bb427.tar.gz
emacs-5433e5788e9aa9cb07bbdc841e40030a416bb427.zip
(auto-revert-stop-on-user-input): Doc fix.
-rw-r--r--lisp/autorevert.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/autorevert.el b/lisp/autorevert.el
index a83a65d2dfd..a2e60ca3d80 100644
--- a/lisp/autorevert.el
+++ b/lisp/autorevert.el
@@ -151,9 +151,12 @@ next editing session."
151 151
152(defcustom auto-revert-stop-on-user-input t 152(defcustom auto-revert-stop-on-user-input t
153 "When non-nil, user input temporarily interrupts Auto-Revert Mode. 153 "When non-nil, user input temporarily interrupts Auto-Revert Mode.
154When nil, Auto-Revert Mode checks files and reverts buffers, with 154More precisely, Auto-Revert Mode checks for user input after
155quitting disabled, without paying attention to user input. Thus, 155handling each buffer and does not process any further buffers
156it might take a while before Emacs responds to your input." 156\(until the next run of the timer) if user input is available.
157When nil, Auto-Revert Mode checks files and reverts buffers,
158with quitting disabled, without paying attention to user input.
159Thus, it might take a while before Emacs responds to your input."
157 :group 'auto-revert 160 :group 'auto-revert
158 :type 'boolean) 161 :type 'boolean)
159 162