diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/autorevert.el | 16 |
2 files changed, 11 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9479eb2aa0b..64b13c91a4f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-06-18 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * autorevert.el (global-auto-revert-non-file-buffers): Update | ||
| 4 | docstring. | ||
| 5 | |||
| 1 | 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org> | 6 | 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org> |
| 2 | 7 | ||
| 3 | * progmodes/compile.el (compilation-error-properties): Store one | 8 | * progmodes/compile.el (compilation-error-properties): Store one |
diff --git a/lisp/autorevert.el b/lisp/autorevert.el index 5cc57883110..c7a65a867e3 100644 --- a/lisp/autorevert.el +++ b/lisp/autorevert.el | |||
| @@ -178,17 +178,13 @@ would only waste precious space." | |||
| 178 | 178 | ||
| 179 | When non-nil, both file buffers and buffers with a custom | 179 | When non-nil, both file buffers and buffers with a custom |
| 180 | `revert-buffer-function' and a `buffer-stale-function' are | 180 | `revert-buffer-function' and a `buffer-stale-function' are |
| 181 | reverted by Global Auto-Revert Mode. | 181 | reverted by Global Auto-Revert mode. These include the Buffer |
| 182 | List buffer, and Dired buffers showing complete local | ||
| 183 | directories. Dired buffers do not auto-revert as a result of | ||
| 184 | changes in subdirectories or in the contents, size, modes, etc., | ||
| 185 | of files. You may still sometimes want to revert them manually. | ||
| 182 | 186 | ||
| 183 | Use this option with care since it could lead to excessive reverts. | 187 | For more information, see Info node `(emacs-xtra)Autorevert'." |
| 184 | Note also that for some non-file buffers the check whether the | ||
| 185 | buffer needs updating may be imperfect, due to efficiency | ||
| 186 | considerations, and may not take all information listed in the | ||
| 187 | buffer into account. Hence, a non-nil value for this option does | ||
| 188 | not necessarily make manual updates useless for non-file buffers. | ||
| 189 | |||
| 190 | To find out to which buffers this option currently applies, as | ||
| 191 | well as for further details, see Info node `(emacs-xtra)Autorevert'." | ||
| 192 | :group 'auto-revert | 188 | :group 'auto-revert |
| 193 | :type 'boolean | 189 | :type 'boolean |
| 194 | :link '(info-link "(emacs-xtra)Autorevert")) | 190 | :link '(info-link "(emacs-xtra)Autorevert")) |