1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-18 14:11:38 -08:00

(auto-revert-stop-on-user-input): Further doc fix.

This commit is contained in:
Luc Teirlinck 2005-02-17 00:58:19 +00:00
parent a6f82cc4ec
commit 6dbbc01d66
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
* autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
2005-02-16 Kim F. Storm <storm@cua.dk>
* ido.el (ido-fallback-command): Pass user input to fallback command.

View file

@ -151,12 +151,12 @@ next editing session."
(defcustom auto-revert-stop-on-user-input t
"When non-nil, user input temporarily interrupts Auto-Revert Mode.
More precisely, Auto-Revert Mode checks for user input after
With this setting, Auto-Revert Mode checks for user input after
handling each buffer and does not process any further buffers
\(until the next run of the timer) if user input is available.
When nil, Auto-Revert Mode checks files and reverts buffers,
with quitting disabled, without paying attention to user input.
Thus, it might take a while before Emacs responds to your input."
Thus, Emacs might be non-responsive at times."
:group 'auto-revert
:type 'boolean)