diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/autorevert.el | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6ed13e06292..008fa30367a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change) + + * autorevert.el (auto-revert-interval): Doc fix. + 2003-12-29 Mark A. Hershberger <mah@everybody.org> * xml.el (xml-get-attribute-or-nil): New function, like diff --git a/lisp/autorevert.el b/lisp/autorevert.el index f366d5c7547..fac91332a5e 100644 --- a/lisp/autorevert.el +++ b/lisp/autorevert.el @@ -97,7 +97,10 @@ Never set this variable directly, use the command `auto-revert-mode' instead.") (put 'auto-revert-mode 'permanent-local t) (defcustom auto-revert-interval 5 - "Time, in seconds, between Auto-Revert Mode file checks." + "Time, in seconds, between Auto-Revert Mode file checks. +Setting this variable has no effect on buffers that are already in +auto-revert-mode; it only affects buffers that are put into +auto-revert-mode afterwards." :group 'auto-revert :type 'integer) |