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