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