aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-03-19 14:58:07 +0000
committerDave Love2001-03-19 14:58:07 +0000
commit9daa0aa04d165920a0ab65affbda032638714335 (patch)
treeb889cb5225bf4843b93fba5afe4c92b5cc2a4cef
parentd70ba855bde44101cecd2a47027bc036ad2728c4 (diff)
downloademacs-9daa0aa04d165920a0ab65affbda032638714335.tar.gz
emacs-9daa0aa04d165920a0ab65affbda032638714335.zip
auto-revert-mode
-rw-r--r--man/files.texi17
1 files changed, 16 insertions, 1 deletions
diff --git a/man/files.texi b/man/files.texi
index 6bfeb0ae7d1..7473d4723db 100644
--- a/man/files.texi
+++ b/man/files.texi
@@ -532,7 +532,7 @@ be @file{eval.c~}.
532 You can change this behaviour by defining the variable 532 You can change this behaviour by defining the variable
533@code{make-backup-file-name-function} to a suitable function. 533@code{make-backup-file-name-function} to a suitable function.
534Alternatively you can customize the variable 534Alternatively you can customize the variable
535@var{backup-directory-alist} to specify that files matching certain 535@code{backup-directory-alist} to specify that files matching certain
536patterns should be backed up in specific directories. 536patterns should be backed up in specific directories.
537 537
538 A typical use is to add an element @code{("." . @var{dir})} to make 538 A typical use is to add an element @code{("." . @var{dir})} to make
@@ -862,6 +862,21 @@ revert it automatically if it has changed---provided the buffer itself
862is not modified. (If you have edited the text, it would be wrong to 862is not modified. (If you have edited the text, it would be wrong to
863discard your changes.) 863discard your changes.)
864 864
865@cindex Global Auto-Revert mode
866@cindex mode, Global Auto-Revert
867@cindex Auto-Revert mode
868@cindex mode, Auto-Revert
869@findex global-auto-revert-mode
870@findex auto-revert-mode
871@vindex auto-revert-interval
872You may find it useful to have Emacs revert files automatically when
873they change. Two minor modes are available to do this. In Global
874Auto-Revert mode, Emacs periodically checks all file buffers and
875reverts any when the corresponding file has changed. The local
876variant, Auto-Revert mode, applies only to buffers in which it was
877activated. Checking the files is done at intervals determined by the
878variable @code{auto-revert-interval}.
879
865@node Auto Save 880@node Auto Save
866@section Auto-Saving: Protection Against Disasters 881@section Auto-Saving: Protection Against Disasters
867@cindex Auto Save mode 882@cindex Auto Save mode