diff options
| author | Luc Teirlinck | 2005-02-17 00:58:19 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-02-17 00:58:19 +0000 |
| commit | 6dbbc01d66ca76eb6f353245a26bdba131ae3df2 (patch) | |
| tree | d7a7ceb60b869c5552d5a6d163e815bdd8b1b15f | |
| parent | a6f82cc4ec7ae5b4360e4dd11fae44dd739a8c52 (diff) | |
| download | emacs-6dbbc01d66ca76eb6f353245a26bdba131ae3df2.tar.gz emacs-6dbbc01d66ca76eb6f353245a26bdba131ae3df2.zip | |
(auto-revert-stop-on-user-input): Further doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/autorevert.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1a21a347991..b7ed7687fc2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-02-16 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * autorevert.el (auto-revert-stop-on-user-input): Further doc fix. | ||
| 4 | |||
| 1 | 2005-02-16 Kim F. Storm <storm@cua.dk> | 5 | 2005-02-16 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | * ido.el (ido-fallback-command): Pass user input to fallback command. | 7 | * ido.el (ido-fallback-command): Pass user input to fallback command. |
diff --git a/lisp/autorevert.el b/lisp/autorevert.el index a2e60ca3d80..31dd39c201f 100644 --- a/lisp/autorevert.el +++ b/lisp/autorevert.el | |||
| @@ -151,12 +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 | More precisely, Auto-Revert Mode checks for user input after | 154 | With this setting, Auto-Revert Mode checks for user input after |
| 155 | handling each buffer and does not process any further buffers | 155 | handling each buffer and does not process any further buffers |
| 156 | \(until the next run of the timer) if user input is available. | 156 | \(until the next run of the timer) if user input is available. |
| 157 | When nil, Auto-Revert Mode checks files and reverts buffers, | 157 | When nil, Auto-Revert Mode checks files and reverts buffers, |
| 158 | with quitting disabled, without paying attention to user input. | 158 | with quitting disabled, without paying attention to user input. |
| 159 | Thus, it might take a while before Emacs responds to your input." | 159 | Thus, Emacs might be non-responsive at times." |
| 160 | :group 'auto-revert | 160 | :group 'auto-revert |
| 161 | :type 'boolean) | 161 | :type 'boolean) |
| 162 | 162 | ||