Update copyright year to 2015
[emacs.git] / doc / lispref / backups.texi
blob0a1b5a24e4f19a05f24f7faa989da2797c433908
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1995, 1999, 2001-2015 Free Software Foundation,
4 @c Inc.
5 @c See the file elisp.texi for copying conditions.
6 @node Backups and Auto-Saving
7 @chapter Backups and Auto-Saving
8 @cindex backups and auto-saving
10   Backup files and auto-save files are two methods by which Emacs tries
11 to protect the user from the consequences of crashes or of the user's
12 own errors.  Auto-saving preserves the text from earlier in the current
13 editing session; backup files preserve file contents prior to the
14 current session.
16 @menu
17 * Backup Files::   How backup files are made; how their names are chosen.
18 * Auto-Saving::    How auto-save files are made; how their names are chosen.
19 * Reverting::      @code{revert-buffer}, and how to customize what it does.
20 @end menu
22 @node Backup Files
23 @section Backup Files
24 @cindex backup file
26   A @dfn{backup file} is a copy of the old contents of a file you are
27 editing.  Emacs makes a backup file the first time you save a buffer
28 into its visited file.  Thus, normally, the backup file contains the
29 contents of the file as it was before the current editing session.
30 The contents of the backup file normally remain unchanged once it
31 exists.
33   Backups are usually made by renaming the visited file to a new name.
34 Optionally, you can specify that backup files should be made by copying
35 the visited file.  This choice makes a difference for files with
36 multiple names; it also can affect whether the edited file remains owned
37 by the original owner or becomes owned by the user editing it.
39   By default, Emacs makes a single backup file for each file edited.
40 You can alternatively request numbered backups; then each new backup
41 file gets a new name.  You can delete old numbered backups when you
42 don't want them any more, or Emacs can delete them automatically.
44 @menu
45 * Making Backups::     How Emacs makes backup files, and when.
46 * Rename or Copy::     Two alternatives: renaming the old file or copying it.
47 * Numbered Backups::   Keeping multiple backups for each source file.
48 * Backup Names::       How backup file names are computed; customization.
49 @end menu
51 @node Making Backups
52 @subsection Making Backup Files
53 @cindex making backup files
55 @defun backup-buffer
56   This function makes a backup of the file visited by the current
57 buffer, if appropriate.  It is called by @code{save-buffer} before
58 saving the buffer the first time.
60 If a backup was made by renaming, the return value is a cons cell of
61 the form (@var{modes} @var{extra-alist} @var{backupname}), where
62 @var{modes} are the mode bits of the original file, as returned by
63 @code{file-modes} (@pxref{Testing Accessibility}), @var{extra-alist}
64 is an alist describing the original file's extended attributes, as
65 returned by @code{file-extended-attributes} (@pxref{Extended
66 Attributes}), and @var{backupname} is the name of the backup.
68 In all other cases (i.e., if a backup was made by copying or if no
69 backup was made), this function returns @code{nil}.
70 @end defun
72 @defvar buffer-backed-up
73   This buffer-local variable says whether this buffer's file has
74 been backed up on account of this buffer.  If it is non-@code{nil},
75 the backup file has been written.  Otherwise, the file should be backed
76 up when it is next saved (if backups are enabled).  This is a
77 permanent local; @code{kill-all-local-variables} does not alter@tie{}it.
78 @end defvar
80 @defopt make-backup-files
81 This variable determines whether or not to make backup files.  If it
82 is non-@code{nil}, then Emacs creates a backup of each file when it is
83 saved for the first time---provided that @code{backup-inhibited}
84 is @code{nil} (see below).
86 The following example shows how to change the @code{make-backup-files}
87 variable only in the Rmail buffers and not elsewhere.  Setting it
88 @code{nil} stops Emacs from making backups of these files, which may
89 save disk space.  (You would put this code in your init file.)
91 @smallexample
92 @group
93 (add-hook 'rmail-mode-hook
94           (lambda () (setq-local make-backup-files nil)))
95 @end group
96 @end smallexample
97 @end defopt
99 @defvar backup-enable-predicate
100 This variable's value is a function to be called on certain occasions to
101 decide whether a file should have backup files.  The function receives
102 one argument, an absolute file name to consider.  If the function returns
103 @code{nil}, backups are disabled for that file.  Otherwise, the other
104 variables in this section say whether and how to make backups.
106 @findex normal-backup-enable-predicate
107 The default value is @code{normal-backup-enable-predicate}, which checks
108 for files in @code{temporary-file-directory} and
109 @code{small-temporary-file-directory}.
110 @end defvar
112 @defvar backup-inhibited
113 If this variable is non-@code{nil}, backups are inhibited.  It records
114 the result of testing @code{backup-enable-predicate} on the visited file
115 name.  It can also coherently be used by other mechanisms that inhibit
116 backups based on which file is visited.  For example, VC sets this
117 variable non-@code{nil} to prevent making backups for files managed
118 with a version control system.
120 This is a permanent local, so that changing the major mode does not lose
121 its value.  Major modes should not set this variable---they should set
122 @code{make-backup-files} instead.
123 @end defvar
125 @defopt backup-directory-alist
126 This variable's value is an alist of filename patterns and backup
127 directory names.  Each element looks like
128 @smallexample
129 (@var{regexp} . @var{directory})
130 @end smallexample
132 @noindent
133 Backups of files with names matching @var{regexp} will be made in
134 @var{directory}.  @var{directory} may be relative or absolute.  If it is
135 absolute, so that all matching files are backed up into the same
136 directory, the file names in this directory will be the full name of the
137 file backed up with all directory separators changed to @samp{!} to
138 prevent clashes.  This will not work correctly if your filesystem
139 truncates the resulting name.
141 For the common case of all backups going into one directory, the alist
142 should contain a single element pairing @samp{"."} with the appropriate
143 directory name.
145 If this variable is @code{nil} (the default), or it fails to match a
146 filename, the backup is made in the original file's directory.
148 On MS-DOS filesystems without long names this variable is always
149 ignored.
150 @end defopt
152 @defopt make-backup-file-name-function
153 This variable's value is a function to use for making backup file names.
154 The function @code{make-backup-file-name} calls it.
155 @xref{Backup Names,, Naming Backup Files}.
157 This could be buffer-local to do something special for specific
158 files.  If you change it, you may need to change
159 @code{backup-file-name-p} and @code{file-name-sans-versions} too.
160 @end defopt
163 @node Rename or Copy
164 @subsection Backup by Renaming or by Copying?
165 @cindex backup files, rename or copy
167   There are two ways that Emacs can make a backup file:
169 @itemize @bullet
170 @item
171 Emacs can rename the original file so that it becomes a backup file, and
172 then write the buffer being saved into a new file.  After this
173 procedure, any other names (i.e., hard links) of the original file now
174 refer to the backup file.  The new file is owned by the user doing the
175 editing, and its group is the default for new files written by the user
176 in that directory.
178 @item
179 Emacs can copy the original file into a backup file, and then overwrite
180 the original file with new contents.  After this procedure, any other
181 names (i.e., hard links) of the original file continue to refer to the
182 current (updated) version of the file.  The file's owner and group will
183 be unchanged.
184 @end itemize
186   The first method, renaming, is the default.
188   The variable @code{backup-by-copying}, if non-@code{nil}, says to use
189 the second method, which is to copy the original file and overwrite it
190 with the new buffer contents.  The variable @code{file-precious-flag},
191 if non-@code{nil}, also has this effect (as a sideline of its main
192 significance).  @xref{Saving Buffers}.
194 @defopt backup-by-copying
195 If this variable is non-@code{nil}, Emacs always makes backup files by
196 copying.  The default is @code{nil}.
197 @end defopt
199   The following three variables, when non-@code{nil}, cause the second
200 method to be used in certain special cases.  They have no effect on the
201 treatment of files that don't fall into the special cases.
203 @defopt backup-by-copying-when-linked
204 If this variable is non-@code{nil}, Emacs makes backups by copying for
205 files with multiple names (hard links).  The default is @code{nil}.
207 This variable is significant only if @code{backup-by-copying} is
208 @code{nil}, since copying is always used when that variable is
209 non-@code{nil}.
210 @end defopt
212 @defopt backup-by-copying-when-mismatch
213 If this variable is non-@code{nil} (the default), Emacs makes backups
214 by copying in cases where renaming would change either the owner or
215 the group of the file.
217 The value has no effect when renaming would not alter the owner or
218 group of the file; that is, for files which are owned by the user and
219 whose group matches the default for a new file created there by the
220 user.
222 This variable is significant only if @code{backup-by-copying} is
223 @code{nil}, since copying is always used when that variable is
224 non-@code{nil}.
225 @end defopt
227 @defopt backup-by-copying-when-privileged-mismatch
228 This variable, if non-@code{nil}, specifies the same behavior as
229 @code{backup-by-copying-when-mismatch}, but only for certain user-id
230 values: namely, those less than or equal to a certain number.  You set
231 this variable to that number.
233 Thus, if you set @code{backup-by-copying-when-privileged-mismatch}
234 to 0, backup by copying is done for the superuser only,
235 when necessary to prevent a change in the owner of the file.
237 The default is 200.
238 @end defopt
240 @node Numbered Backups
241 @subsection Making and Deleting Numbered Backup Files
242 @cindex numbered backups
244   If a file's name is @file{foo}, the names of its numbered backup
245 versions are @file{foo.~@var{v}~}, for various integers @var{v}, like
246 this: @file{foo.~1~}, @file{foo.~2~}, @file{foo.~3~}, @dots{},
247 @file{foo.~259~}, and so on.
249 @defopt version-control
250 This variable controls whether to make a single non-numbered backup
251 file or multiple numbered backups.
253 @table @asis
254 @item @code{nil}
255 Make numbered backups if the visited file already has numbered backups;
256 otherwise, do not.  This is the default.
258 @item @code{never}
259 Do not make numbered backups.
261 @item @var{anything else}
262 Make numbered backups.
263 @end table
264 @end defopt
266   The use of numbered backups ultimately leads to a large number of
267 backup versions, which must then be deleted.  Emacs can do this
268 automatically or it can ask the user whether to delete them.
270 @defopt kept-new-versions
271 The value of this variable is the number of newest versions to keep
272 when a new numbered backup is made.  The newly made backup is included
273 in the count.  The default value is@tie{}2.
274 @end defopt
276 @defopt kept-old-versions
277 The value of this variable is the number of oldest versions to keep
278 when a new numbered backup is made.  The default value is@tie{}2.
279 @end defopt
281   If there are backups numbered 1, 2, 3, 5, and 7, and both of these
282 variables have the value 2, then the backups numbered 1 and 2 are kept
283 as old versions and those numbered 5 and 7 are kept as new versions;
284 backup version 3 is excess.  The function @code{find-backup-file-name}
285 (@pxref{Backup Names}) is responsible for determining which backup
286 versions to delete, but does not delete them itself.
288 @defopt delete-old-versions
289 If this variable is @code{t}, then saving a file deletes excess
290 backup versions silently.  If it is @code{nil}, that means
291 to ask for confirmation before deleting excess backups.
292 Otherwise, they are not deleted at all.
293 @end defopt
295 @defopt dired-kept-versions
296 This variable specifies how many of the newest backup versions to keep
297 in the Dired command @kbd{.} (@code{dired-clean-directory}).  That's the
298 same thing @code{kept-new-versions} specifies when you make a new backup
299 file.  The default is@tie{}2.
300 @end defopt
302 @node Backup Names
303 @subsection Naming Backup Files
304 @cindex naming backup files
306   The functions in this section are documented mainly because you can
307 customize the naming conventions for backup files by redefining them.
308 If you change one, you probably need to change the rest.
310 @defun backup-file-name-p filename
311 This function returns a non-@code{nil} value if @var{filename} is a
312 possible name for a backup file.  It just checks the name, not whether
313 a file with the name @var{filename} exists.
315 @smallexample
316 @group
317 (backup-file-name-p "foo")
318      @result{} nil
319 @end group
320 @group
321 (backup-file-name-p "foo~")
322      @result{} 3
323 @end group
324 @end smallexample
326 The standard definition of this function is as follows:
328 @smallexample
329 @group
330 (defun backup-file-name-p (file)
331   "Return non-nil if FILE is a backup file \
332 name (numeric or not)..."
333   (string-match "~\\'" file))
334 @end group
335 @end smallexample
337 @noindent
338 Thus, the function returns a non-@code{nil} value if the file name ends
339 with a @samp{~}.  (We use a backslash to split the documentation
340 string's first line into two lines in the text, but produce just one
341 line in the string itself.)
343 This simple expression is placed in a separate function to make it easy
344 to redefine for customization.
345 @end defun
347 @defun make-backup-file-name filename
348 This function returns a string that is the name to use for a
349 non-numbered backup file for file @var{filename}.  On Unix, this is just
350 @var{filename} with a tilde appended.
352 The standard definition of this function, on most operating systems, is
353 as follows:
355 @smallexample
356 @group
357 (defun make-backup-file-name (file)
358   "Create the non-numeric backup file name for FILE..."
359   (concat file "~"))
360 @end group
361 @end smallexample
363 You can change the backup-file naming convention by redefining this
364 function.  The following example redefines @code{make-backup-file-name}
365 to prepend a @samp{.} in addition to appending a tilde:
367 @smallexample
368 @group
369 (defun make-backup-file-name (filename)
370   (expand-file-name
371     (concat "." (file-name-nondirectory filename) "~")
372     (file-name-directory filename)))
373 @end group
375 @group
376 (make-backup-file-name "backups.texi")
377      @result{} ".backups.texi~"
378 @end group
379 @end smallexample
381 Some parts of Emacs, including some Dired commands, assume that backup
382 file names end with @samp{~}.  If you do not follow that convention, it
383 will not cause serious problems, but these commands may give
384 less-than-desirable results.
385 @end defun
387 @defun find-backup-file-name filename
388 This function computes the file name for a new backup file for
389 @var{filename}.  It may also propose certain existing backup files for
390 deletion.  @code{find-backup-file-name} returns a list whose @sc{car} is
391 the name for the new backup file and whose @sc{cdr} is a list of backup
392 files whose deletion is proposed.  The value can also be @code{nil},
393 which means not to make a backup.
395 Two variables, @code{kept-old-versions} and @code{kept-new-versions},
396 determine which backup versions should be kept.  This function keeps
397 those versions by excluding them from the @sc{cdr} of the value.
398 @xref{Numbered Backups}.
400 In this example, the value says that @file{~rms/foo.~5~} is the name
401 to use for the new backup file, and @file{~rms/foo.~3~} is an ``excess''
402 version that the caller should consider deleting now.
404 @smallexample
405 @group
406 (find-backup-file-name "~rms/foo")
407      @result{} ("~rms/foo.~5~" "~rms/foo.~3~")
408 @end group
409 @end smallexample
410 @end defun
412 @c Emacs 19 feature
413 @defun file-newest-backup filename
414 This function returns the name of the most recent backup file for
415 @var{filename}, or @code{nil} if that file has no backup files.
417 Some file comparison commands use this function so that they can
418 automatically compare a file with its most recent backup.
419 @end defun
421 @node Auto-Saving
422 @section Auto-Saving
423 @c @cindex auto-saving   Lots of symbols starting with auto-save here.
425   Emacs periodically saves all files that you are visiting; this is
426 called @dfn{auto-saving}.  Auto-saving prevents you from losing more
427 than a limited amount of work if the system crashes.  By default,
428 auto-saves happen every 300 keystrokes, or after around 30 seconds of
429 idle time.  @xref{Auto Save, Auto Save, Auto-Saving: Protection Against
430 Disasters, emacs, The GNU Emacs Manual}, for information on auto-save
431 for users.  Here we describe the functions used to implement auto-saving
432 and the variables that control them.
434 @defvar buffer-auto-save-file-name
435 This buffer-local variable is the name of the file used for
436 auto-saving the current buffer.  It is @code{nil} if the buffer
437 should not be auto-saved.
439 @example
440 @group
441 buffer-auto-save-file-name
442      @result{} "/xcssun/users/rms/lewis/#backups.texi#"
443 @end group
444 @end example
445 @end defvar
447 @deffn Command auto-save-mode arg
448 This is the mode command for Auto Save mode, a buffer-local minor
449 mode.  When Auto Save mode is enabled, auto-saving is enabled in the
450 buffer.  The calling convention is the same as for other minor mode
451 commands (@pxref{Minor Mode Conventions}).
453 Unlike most minor modes, there is no @code{auto-save-mode} variable.
454 Auto Save mode is enabled if @code{buffer-auto-save-file-name} is
455 non-@code{nil} and @code{buffer-saved-size} (see below) is non-zero.
456 @end deffn
458 @defun auto-save-file-name-p filename
459 This function returns a non-@code{nil} value if @var{filename} is a
460 string that could be the name of an auto-save file.  It assumes
461 the usual naming convention for auto-save files: a name that
462 begins and ends with hash marks (@samp{#}) is a possible auto-save file
463 name.  The argument @var{filename} should not contain a directory part.
465 @example
466 @group
467 (make-auto-save-file-name)
468      @result{} "/xcssun/users/rms/lewis/#backups.texi#"
469 @end group
470 @group
471 (auto-save-file-name-p "#backups.texi#")
472      @result{} 0
473 @end group
474 @group
475 (auto-save-file-name-p "backups.texi")
476      @result{} nil
477 @end group
478 @end example
480 The standard definition of this function is as follows:
482 @example
483 @group
484 (defun auto-save-file-name-p (filename)
485   "Return non-nil if FILENAME can be yielded by..."
486   (string-match "^#.*#$" filename))
487 @end group
488 @end example
490 This function exists so that you can customize it if you wish to
491 change the naming convention for auto-save files.  If you redefine it,
492 be sure to redefine the function @code{make-auto-save-file-name}
493 correspondingly.
494 @end defun
496 @defun make-auto-save-file-name
497 This function returns the file name to use for auto-saving the current
498 buffer.  This is just the file name with hash marks (@samp{#}) prepended
499 and appended to it.  This function does not look at the variable
500 @code{auto-save-visited-file-name} (described below); callers of this
501 function should check that variable first.
503 @example
504 @group
505 (make-auto-save-file-name)
506      @result{} "/xcssun/users/rms/lewis/#backups.texi#"
507 @end group
508 @end example
510 Here is a simplified version of the standard definition of this
511 function:
513 @example
514 @group
515 (defun make-auto-save-file-name ()
516   "Return file name to use for auto-saves \
517 of current buffer.."
518   (if buffer-file-name
519 @end group
520 @group
521       (concat
522        (file-name-directory buffer-file-name)
523        "#"
524        (file-name-nondirectory buffer-file-name)
525        "#")
526     (expand-file-name
527      (concat "#%" (buffer-name) "#"))))
528 @end group
529 @end example
531 This exists as a separate function so that you can redefine it to
532 customize the naming convention for auto-save files.  Be sure to
533 change @code{auto-save-file-name-p} in a corresponding way.
534 @end defun
536 @defopt auto-save-visited-file-name
537 If this variable is non-@code{nil}, Emacs auto-saves buffers in
538 the files they are visiting.  That is, the auto-save is done in the same
539 file that you are editing.  Normally, this variable is @code{nil}, so
540 auto-save files have distinct names that are created by
541 @code{make-auto-save-file-name}.
543 When you change the value of this variable, the new value does not take
544 effect in an existing buffer until the next time auto-save mode is
545 reenabled in it.  If auto-save mode is already enabled, auto-saves
546 continue to go in the same file name until @code{auto-save-mode} is
547 called again.
548 @end defopt
550 @defun recent-auto-save-p
551 This function returns @code{t} if the current buffer has been
552 auto-saved since the last time it was read in or saved.
553 @end defun
555 @defun set-buffer-auto-saved
556 This function marks the current buffer as auto-saved.  The buffer will
557 not be auto-saved again until the buffer text is changed again.  The
558 function returns @code{nil}.
559 @end defun
561 @defopt auto-save-interval
562 The value of this variable specifies how often to do auto-saving, in
563 terms of number of input events.  Each time this many additional input
564 events are read, Emacs does auto-saving for all buffers in which that is
565 enabled.  Setting this to zero disables autosaving based on the
566 number of characters typed.
567 @end defopt
569 @defopt auto-save-timeout
570 The value of this variable is the number of seconds of idle time that
571 should cause auto-saving.  Each time the user pauses for this long,
572 Emacs does auto-saving for all buffers in which that is enabled.  (If
573 the current buffer is large, the specified timeout is multiplied by a
574 factor that increases as the size increases; for a million-byte
575 buffer, the factor is almost 4.)
577 If the value is zero or @code{nil}, then auto-saving is not done as a
578 result of idleness, only after a certain number of input events as
579 specified by @code{auto-save-interval}.
580 @end defopt
582 @defvar auto-save-hook
583 This normal hook is run whenever an auto-save is about to happen.
584 @end defvar
586 @defopt auto-save-default
587 If this variable is non-@code{nil}, buffers that are visiting files
588 have auto-saving enabled by default.  Otherwise, they do not.
589 @end defopt
591 @deffn Command do-auto-save &optional no-message current-only
592 This function auto-saves all buffers that need to be auto-saved.  It
593 saves all buffers for which auto-saving is enabled and that have been
594 changed since the previous auto-save.
596 If any buffers are auto-saved, @code{do-auto-save} normally displays a
597 message saying @samp{Auto-saving...} in the echo area while
598 auto-saving is going on.  However, if @var{no-message} is
599 non-@code{nil}, the message is inhibited.
601 If @var{current-only} is non-@code{nil}, only the current buffer
602 is auto-saved.
603 @end deffn
605 @defun delete-auto-save-file-if-necessary &optional force
606 This function deletes the current buffer's auto-save file if
607 @code{delete-auto-save-files} is non-@code{nil}.  It is called every
608 time a buffer is saved.
610 Unless @var{force} is non-@code{nil}, this function only deletes the
611 file if it was written by the current Emacs session since the last
612 true save.
613 @end defun
615 @defopt delete-auto-save-files
616 This variable is used by the function
617 @code{delete-auto-save-file-if-necessary}.  If it is non-@code{nil},
618 Emacs deletes auto-save files when a true save is done (in the visited
619 file).  This saves disk space and unclutters your directory.
620 @end defopt
622 @defun rename-auto-save-file
623 This function adjusts the current buffer's auto-save file name if the
624 visited file name has changed.  It also renames an existing auto-save
625 file, if it was made in the current Emacs session.  If the visited
626 file name has not changed, this function does nothing.
627 @end defun
629 @defvar buffer-saved-size
630 The value of this buffer-local variable is the length of the current
631 buffer, when it was last read in, saved, or auto-saved.  This is
632 used to detect a substantial decrease in size, and turn off auto-saving
633 in response.
635 If it is @minus{}1, that means auto-saving is temporarily shut off in
636 this buffer due to a substantial decrease in size.  Explicitly saving
637 the buffer stores a positive value in this variable, thus reenabling
638 auto-saving.  Turning auto-save mode off or on also updates this
639 variable, so that the substantial decrease in size is forgotten.
641 If it is @minus{}2, that means this buffer should disregard changes in
642 buffer size; in particular, it should not shut off auto-saving
643 temporarily due to changes in buffer size.
644 @end defvar
646 @defvar auto-save-list-file-name
647 This variable (if non-@code{nil}) specifies a file for recording the
648 names of all the auto-save files.  Each time Emacs does auto-saving, it
649 writes two lines into this file for each buffer that has auto-saving
650 enabled.  The first line gives the name of the visited file (it's empty
651 if the buffer has none), and the second gives the name of the auto-save
652 file.
654 When Emacs exits normally, it deletes this file; if Emacs crashes, you
655 can look in the file to find all the auto-save files that might contain
656 work that was otherwise lost.  The @code{recover-session} command uses
657 this file to find them.
659 The default name for this file specifies your home directory and starts
660 with @samp{.saves-}.  It also contains the Emacs process @acronym{ID} and the
661 host name.
662 @end defvar
664 @defopt auto-save-list-file-prefix
665 After Emacs reads your init file, it initializes
666 @code{auto-save-list-file-name} (if you have not already set it
667 non-@code{nil}) based on this prefix, adding the host name and process
668 ID@.  If you set this to @code{nil} in your init file, then Emacs does
669 not initialize @code{auto-save-list-file-name}.
670 @end defopt
672 @node Reverting
673 @section Reverting
674 @cindex reverting buffers
676   If you have made extensive changes to a file and then change your mind
677 about them, you can get rid of them by reading in the previous version
678 of the file with the @code{revert-buffer} command.  @xref{Reverting, ,
679 Reverting a Buffer, emacs, The GNU Emacs Manual}.
681 @deffn Command revert-buffer &optional ignore-auto noconfirm preserve-modes
682 This command replaces the buffer text with the text of the visited
683 file on disk.  This action undoes all changes since the file was visited
684 or saved.
686 By default, if the latest auto-save file is more recent than the visited
687 file, and the argument @var{ignore-auto} is @code{nil},
688 @code{revert-buffer} asks the user whether to use that auto-save
689 instead.  When you invoke this command interactively, @var{ignore-auto}
690 is @code{t} if there is no numeric prefix argument; thus, the
691 interactive default is not to check the auto-save file.
693 Normally, @code{revert-buffer} asks for confirmation before it changes
694 the buffer; but if the argument @var{noconfirm} is non-@code{nil},
695 @code{revert-buffer} does not ask for confirmation.
697 Normally, this command reinitializes the buffer's major and minor modes
698 using @code{normal-mode}.  But if @var{preserve-modes} is
699 non-@code{nil}, the modes remain unchanged.
701 Reverting tries to preserve marker positions in the buffer by using the
702 replacement feature of @code{insert-file-contents}.  If the buffer
703 contents and the file contents are identical before the revert
704 operation, reverting preserves all the markers.  If they are not
705 identical, reverting does change the buffer; in that case, it preserves
706 the markers in the unchanged text (if any) at the beginning and end of
707 the buffer.  Preserving any additional markers would be problematical.
708 @end deffn
710 @defvar revert-buffer-in-progress-p
711 @code{revert-buffer} binds this variable to a non-@code{nil} value
712 while it is working.
713 @end defvar
715 You can customize how @code{revert-buffer} does its work by setting
716 the variables described in the rest of this section.
718 @defopt revert-without-query
719 This variable holds a list of files that should be reverted without
720 query.  The value is a list of regular expressions.  If the visited file
721 name matches one of these regular expressions, and the file has changed
722 on disk but the buffer is not modified, then @code{revert-buffer}
723 reverts the file without asking the user for confirmation.
724 @end defopt
726   Some major modes customize @code{revert-buffer} by making
727 buffer-local bindings for these variables:
729 @defvar revert-buffer-function
730 @anchor{Definition of revert-buffer-function}
731 The value of this variable is the function to use to revert this
732 buffer.  It should be a function with two optional
733 arguments to do the work of reverting.  The two optional arguments,
734 @var{ignore-auto} and @var{noconfirm}, are the arguments that
735 @code{revert-buffer} received.
737 Modes such as Dired mode, in which the text being edited does not
738 consist of a file's contents but can be regenerated in some other
739 fashion, can give this variable a buffer-local value that is a special
740 function to regenerate the contents.
741 @end defvar
743 @defvar revert-buffer-insert-file-contents-function
744 The value of this variable specifies the function to use to
745 insert the updated contents when reverting this buffer.  The function
746 receives two arguments: first the file name to use; second, @code{t} if
747 the user has asked to read the auto-save file.
749 The reason for a mode to change this variable instead of
750 @code{revert-buffer-function} is to avoid duplicating or replacing the
751 rest of what @code{revert-buffer} does: asking for confirmation,
752 clearing the undo list, deciding the proper major mode, and running the
753 hooks listed below.
754 @end defvar
756 @defvar before-revert-hook
757 This normal hook is run by the default @code{revert-buffer-function}
758 before inserting the modified contents.  A custom @code{revert-buffer-function}
759 may or may not run this hook.
760 @end defvar
762 @defvar after-revert-hook
763 This normal hook is run by the default @code{revert-buffer-function}
764 after inserting the modified contents.  A custom @code{revert-buffer-function}
765 may or may not run this hook.
766 @end defvar
768 @c FIXME?  Move this section from arevert-xtra to here?
769 @defvar buffer-stale-function
770 The value of this variable specifies a function to call to check
771 whether a buffer needs reverting.  The default value only handles
772 buffers that are visiting files, by checking their modification time.
773 Buffers that are not visiting files require a custom function
774 @iftex
775 (@pxref{Supporting additional buffers,,, emacs-xtra,  Specialized Emacs Features}).
776 @end iftex
777 @ifnottex
778 (@pxref{Supporting additional buffers,,, emacs}).
779 @end ifnottex
780 @end defvar