diff options
| author | Luc Teirlinck | 2005-02-16 14:14:56 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-02-16 14:14:56 +0000 |
| commit | 5433e5788e9aa9cb07bbdc841e40030a416bb427 (patch) | |
| tree | efaf816dcbd125a71865834b33aec980b2a188a1 | |
| parent | a29c9707c74dbf2cc58192a0299c2e42677bc80d (diff) | |
| download | emacs-5433e5788e9aa9cb07bbdc841e40030a416bb427.tar.gz emacs-5433e5788e9aa9cb07bbdc841e40030a416bb427.zip | |
(auto-revert-stop-on-user-input): Doc fix.
| -rw-r--r-- | lisp/autorevert.el | 9 |
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. |
| 154 | When nil, Auto-Revert Mode checks files and reverts buffers, with | 154 | More precisely, Auto-Revert Mode checks for user input after |
| 155 | quitting disabled, without paying attention to user input. Thus, | 155 | handling each buffer and does not process any further buffers |
| 156 | it might take a while before Emacs responds to your input." | 156 | \(until the next run of the timer) if user input is available. |
| 157 | When nil, Auto-Revert Mode checks files and reverts buffers, | ||
| 158 | with quitting disabled, without paying attention to user input. | ||
| 159 | Thus, 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 | ||