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