Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-396
[bpt/emacs.git] / lispref / backups.texi
CommitLineData
b1b12a8e
RS
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
fd897522 3@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1999
177c0ea7 4@c Free Software Foundation, Inc.
b1b12a8e
RS
5@c See the file elisp.texi for copying conditions.
6@setfilename ../info/backups
7@node Backups and Auto-Saving, Buffers, Files, Top
8@chapter 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
0680592c 22@node Backup Files
b1b12a8e
RS
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. Normally, this means that the backup file
29contains the contents of the file as it was before the current editing
30session. The contents of the backup file normally remain unchanged once
31it exists.
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
0680592c 51@node Making Backups
b1b12a8e
RS
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.
ab19c39b
LT
58
59If a backup was made by renaming, the return value is a cons cell of
60the form (@var{modes} . @var{backupname}), where @var{modes} are the
61mode bits of the original file, as returned by @code{file-modes}
62(@pxref{File Attributes,, Other Information about Files}), and
63@var{backupname} is the name of the backup. In all other cases, that
64is, if a backup was made by copying or if no backup was made, this
65function returns @code{nil}.
b1b12a8e
RS
66@end defun
67
68@defvar buffer-backed-up
69 This buffer-local variable indicates whether this buffer's file has
70been backed up on account of this buffer. If it is non-@code{nil}, then
71the backup file has been written. Otherwise, the file should be backed
2e00781a 72up when it is next saved (if backups are enabled). This is a
29b677db 73permanent local; @code{kill-all-local-variables} does not alter it.
b1b12a8e
RS
74@end defvar
75
76@defopt make-backup-files
bfe721d1 77This variable determines whether or not to make backup files. If it
b1b12a8e 78is non-@code{nil}, then Emacs creates a backup of each file when it is
bfe721d1
KH
79saved for the first time---provided that @code{backup-inhibited}
80is @code{nil} (see below).
b1b12a8e 81
bfe721d1 82The following example shows how to change the @code{make-backup-files}
f9f59935
RS
83variable only in the Rmail buffers and not elsewhere. Setting it
84@code{nil} stops Emacs from making backups of these files, which may
a40d4712 85save disk space. (You would put this code in your init file.)
b1b12a8e
RS
86
87@smallexample
88@group
177c0ea7 89(add-hook 'rmail-mode-hook
b1b12a8e 90 (function (lambda ()
177c0ea7 91 (make-local-variable
b1b12a8e
RS
92 'make-backup-files)
93 (setq make-backup-files nil))))
94@end group
95@end smallexample
96@end defopt
97
2e00781a 98@defvar backup-enable-predicate
b1b12a8e 99This variable's value is a function to be called on certain occasions to
2e00781a 100decide whether a file should have backup files. The function receives
ab19c39b 101one argument, an absolute file name to consider. If the function returns
2e00781a
RS
102@code{nil}, backups are disabled for that file. Otherwise, the other
103variables in this section say whether and how to make backups.
b1b12a8e 104
bae2aa40
DL
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}.
b1b12a8e
RS
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
bfe721d1
KH
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.
2e00781a 118
bfe721d1
KH
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
2e00781a 121@code{make-backup-files} instead.
b1b12a8e
RS
122@end defvar
123
bae2aa40 124@defvar backup-directory-alist
87b3b129 125@tindex backup-directory-alist
bae2aa40
DL
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
145If this variable is @code{nil}, or it fails to match a filename, the
146backup is made in the original file's directory.
147
148On MS-DOS filesystems without long names this variable is always
149ignored.
150@end defvar
151
152@defvar make-backup-file-name-function
87b3b129 153@tindex make-backup-file-name-function
9a8dc0d3
RS
154This variable's value is a function to use for making backups instead
155of the default @code{make-backup-file-name}. A value of @code{nil}
156gives the default @code{make-backup-file-name} behaviour.
ab19c39b 157@xref{Backup Names,, Naming Backup Files}.
bae2aa40 158
5bf6f93d 159This could be buffer-local to do something special for specific
bae2aa40
DL
160files. If you define it, you may need to change
161@code{backup-file-name-p} and @code{file-name-sans-versions} too.
162@end defvar
163
164
0680592c 165@node Rename or Copy
b1b12a8e
RS
166@subsection Backup by Renaming or by Copying?
167@cindex backup files, how to make them
168
177c0ea7 169 There are two ways that Emacs can make a backup file:
b1b12a8e
RS
170
171@itemize @bullet
172@item
173Emacs can rename the original file so that it becomes a backup file, and
174then write the buffer being saved into a new file. After this
175procedure, any other names (i.e., hard links) of the original file now
176refer to the backup file. The new file is owned by the user doing the
177editing, and its group is the default for new files written by the user
178in that directory.
179
180@item
181Emacs can copy the original file into a backup file, and then overwrite
182the original file with new contents. After this procedure, any other
f9f59935
RS
183names (i.e., hard links) of the original file continue to refer to the
184current (updated) version of the file. The file's owner and group will
185be unchanged.
b1b12a8e
RS
186@end itemize
187
188 The first method, renaming, is the default.
189
190 The variable @code{backup-by-copying}, if non-@code{nil}, says to use
191the second method, which is to copy the original file and overwrite it
192with the new buffer contents. The variable @code{file-precious-flag},
193if non-@code{nil}, also has this effect (as a sideline of its main
194significance). @xref{Saving Buffers}.
195
ab19c39b 196@defopt backup-by-copying
b1b12a8e
RS
197If this variable is non-@code{nil}, Emacs always makes backup files by
198copying.
ab19c39b 199@end defopt
b1b12a8e
RS
200
201 The following two variables, when non-@code{nil}, cause the second
202method to be used in certain special cases. They have no effect on the
203treatment of files that don't fall into the special cases.
204
ab19c39b 205@defopt backup-by-copying-when-linked
b1b12a8e
RS
206If this variable is non-@code{nil}, Emacs makes backups by copying for
207files with multiple names (hard links).
208
209This variable is significant only if @code{backup-by-copying} is
210@code{nil}, since copying is always used when that variable is
211non-@code{nil}.
ab19c39b 212@end defopt
b1b12a8e 213
ab19c39b 214@defopt backup-by-copying-when-mismatch
b1b12a8e
RS
215If this variable is non-@code{nil}, Emacs makes backups by copying in cases
216where renaming would change either the owner or the group of the file.
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}.
ab19c39b 226@end defopt
b1b12a8e 227
ab19c39b 228@defopt backup-by-copying-when-privileged-mismatch
8241495d
RS
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.
ab19c39b 239@end defopt
8241495d 240
0680592c 241@node Numbered Backups
b1b12a8e
RS
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.
257
258@item @code{never}
259Do not make numbered backups.
260
261@item @var{anything else}
2e00781a 262Make numbered backups.
b1b12a8e
RS
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
2e00781a 268automatically or it can ask the user whether to delete them.
b1b12a8e
RS
269
270@defopt kept-new-versions
2e00781a 271The value of this variable is the number of newest versions to keep
b1b12a8e
RS
272when a new numbered backup is made. The newly made backup is included
273in the count. The default value is 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 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;
2e00781a 284backup version 3 is excess. The function @code{find-backup-file-name}
b1b12a8e
RS
285(@pxref{Backup Names}) is responsible for determining which backup
286versions to delete, but does not delete them itself.
287
f9f59935 288@defopt delete-old-versions
29b677db
RS
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.
b1b12a8e
RS
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
2e00781a 298same thing @code{kept-new-versions} specifies when you make a new backup
b1b12a8e
RS
299file. The default value is 2.
300@end defopt
301
0680592c 302@node Backup Names
b1b12a8e
RS
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. A file with the name @var{filename}
312need not exist; the function just checks the name.
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)..."
29b677db 332 (string-match "~\\'" file))
b1b12a8e
RS
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
2e00781a 347This function returns a string that is the name to use for a
b1b12a8e
RS
348non-numbered backup file for file @var{filename}. On Unix, this is just
349@var{filename} with a tilde appended.
350
a9f0a989
RS
351The standard definition of this function, on most operating systems, is
352as follows:
b1b12a8e
RS
353
354@smallexample
355@group
356(defun make-backup-file-name (file)
29b677db 357 "Create the non-numeric backup file name for FILE..."
b1b12a8e
RS
358 (concat file "~"))
359@end group
360@end smallexample
361
2e00781a 362You can change the backup-file naming convention by redefining this
b1b12a8e 363function. The following example redefines @code{make-backup-file-name}
2e00781a 364to prepend a @samp{.} in addition to appending a tilde:
b1b12a8e
RS
365
366@smallexample
367@group
368(defun make-backup-file-name (filename)
a9f0a989
RS
369 (expand-file-name
370 (concat "." (file-name-nondirectory filename) "~")
371 (file-name-directory filename)))
b1b12a8e
RS
372@end group
373
374@group
375(make-backup-file-name "backups.texi")
376 @result{} ".backups.texi~"
377@end group
378@end smallexample
a9f0a989
RS
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.
b1b12a8e
RS
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
ab19c39b
LT
391files whose deletion is proposed. The value can also be @code{nil},
392which means not to make a backup.
b1b12a8e
RS
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
2e00781a 414@var{filename}, or @code{nil} if that file has no backup files.
b1b12a8e 415
2e00781a
RS
416Some file comparison commands use this function so that they can
417automatically compare a file with its most recent backup.
177c0ea7 418@end defun
b1b12a8e 419
0680592c 420@node Auto-Saving
b1b12a8e
RS
421@section Auto-Saving
422@cindex auto-saving
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
333c5fc5 428idle time. @xref{Auto Save, Auto Save, Auto-Saving: Protection Against
b1b12a8e
RS
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
29b677db 441 @result{} "/xcssun/users/rms/lewis/#backups.texi#"
b1b12a8e
RS
442@end group
443@end example
444@end defvar
445
446@deffn Command auto-save-mode arg
447When used interactively without an argument, this command is a toggle
448switch: it turns on auto-saving of the current buffer if it is off, and
29b677db 449vice versa. With an argument @var{arg}, the command turns auto-saving
b1b12a8e
RS
450on if the value of @var{arg} is @code{t}, a nonempty list, or a positive
451integer. Otherwise, it turns auto-saving off.
452@end deffn
453
454@defun auto-save-file-name-p filename
455This function returns a non-@code{nil} value if @var{filename} is a
8241495d
RS
456string that could be the name of an auto-save file. It assumes
457the usual naming convention for auto-save files: a name that
b1b12a8e
RS
458begins and ends with hash marks (@samp{#}) is a possible auto-save file
459name. The argument @var{filename} should not contain a directory part.
460
461@example
462@group
463(make-auto-save-file-name)
29b677db 464 @result{} "/xcssun/users/rms/lewis/#backups.texi#"
b1b12a8e
RS
465@end group
466@group
29b677db 467(auto-save-file-name-p "#backups.texi#")
b1b12a8e
RS
468 @result{} 0
469@end group
470@group
29b677db 471(auto-save-file-name-p "backups.texi")
b1b12a8e
RS
472 @result{} nil
473@end group
474@end example
475
476The standard definition of this function is as follows:
477
478@example
479@group
480(defun auto-save-file-name-p (filename)
481 "Return non-nil if FILENAME can be yielded by..."
482 (string-match "^#.*#$" filename))
483@end group
484@end example
485
486This function exists so that you can customize it if you wish to
487change the naming convention for auto-save files. If you redefine it,
488be sure to redefine the function @code{make-auto-save-file-name}
489correspondingly.
490@end defun
491
492@defun make-auto-save-file-name
493This function returns the file name to use for auto-saving the current
86494bd5
KH
494buffer. This is just the file name with hash marks (@samp{#}) prepended
495and appended to it. This function does not look at the variable
8241495d
RS
496@code{auto-save-visited-file-name} (described below); callers of this
497function should check that variable first.
b1b12a8e
RS
498
499@example
500@group
501(make-auto-save-file-name)
29b677db 502 @result{} "/xcssun/users/rms/lewis/#backups.texi#"
b1b12a8e
RS
503@end group
504@end example
505
506The standard definition of this function is as follows:
507
508@example
509@group
510(defun make-auto-save-file-name ()
511 "Return file name to use for auto-saves \
29b677db 512of current buffer.."
b1b12a8e
RS
513 (if buffer-file-name
514@end group
515@group
516 (concat
517 (file-name-directory buffer-file-name)
518 "#"
519 (file-name-nondirectory buffer-file-name)
520 "#")
521 (expand-file-name
522 (concat "#%" (buffer-name) "#"))))
523@end group
524@end example
525
526This exists as a separate function so that you can redefine it to
527customize the naming convention for auto-save files. Be sure to
528change @code{auto-save-file-name-p} in a corresponding way.
529@end defun
530
ab19c39b 531@defopt auto-save-visited-file-name
b1b12a8e
RS
532If this variable is non-@code{nil}, Emacs auto-saves buffers in
533the files they are visiting. That is, the auto-save is done in the same
2e00781a 534file that you are editing. Normally, this variable is @code{nil}, so
b1b12a8e
RS
535auto-save files have distinct names that are created by
536@code{make-auto-save-file-name}.
537
8241495d
RS
538When you change the value of this variable, the new value does not take
539effect in an existing buffer until the next time auto-save mode is
540reenabled in it. If auto-save mode is already enabled, auto-saves
541continue to go in the same file name until @code{auto-save-mode} is
542called again.
ab19c39b 543@end defopt
b1b12a8e
RS
544
545@defun recent-auto-save-p
546This function returns @code{t} if the current buffer has been
547auto-saved since the last time it was read in or saved.
548@end defun
549
550@defun set-buffer-auto-saved
551This function marks the current buffer as auto-saved. The buffer will
552not be auto-saved again until the buffer text is changed again. The
553function returns @code{nil}.
554@end defun
555
556@defopt auto-save-interval
8241495d
RS
557The value of this variable specifies how often to do auto-saving, in
558terms of number of input events. Each time this many additional input
559events are read, Emacs does auto-saving for all buffers in which that is
ab19c39b
LT
560enabled. Setting this to zero disables autosaving based on the
561number of characters typed.
b1b12a8e
RS
562@end defopt
563
564@defopt auto-save-timeout
565The value of this variable is the number of seconds of idle time that
566should cause auto-saving. Each time the user pauses for this long,
29b677db
RS
567Emacs does auto-saving for all buffers in which that is enabled. (If
568the current buffer is large, the specified timeout is multiplied by a
080a57ba 569factor that increases as the size increases; for a million-byte
29b677db
RS
570buffer, the factor is almost 4.)
571
9a8dc0d3
RS
572If the value is zero or @code{nil}, then auto-saving is not done as a
573result of idleness, only after a certain number of input events as
574specified by @code{auto-save-interval}.
b1b12a8e
RS
575@end defopt
576
577@defvar auto-save-hook
578This normal hook is run whenever an auto-save is about to happen.
579@end defvar
580
581@defopt auto-save-default
582If this variable is non-@code{nil}, buffers that are visiting files
583have auto-saving enabled by default. Otherwise, they do not.
584@end defopt
585
bfe721d1 586@deffn Command do-auto-save &optional no-message current-only
b1b12a8e
RS
587This function auto-saves all buffers that need to be auto-saved. It
588saves all buffers for which auto-saving is enabled and that have been
589changed since the previous auto-save.
590
591Normally, if any buffers are auto-saved, a message that says
592@samp{Auto-saving...} is displayed in the echo area while auto-saving is
593going on. However, if @var{no-message} is non-@code{nil}, the message
594is inhibited.
bfe721d1
KH
595
596If @var{current-only} is non-@code{nil}, only the current buffer
597is auto-saved.
b1b12a8e
RS
598@end deffn
599
ab19c39b 600@defun delete-auto-save-file-if-necessary &optional force
b1b12a8e
RS
601This function deletes the current buffer's auto-save file if
602@code{delete-auto-save-files} is non-@code{nil}. It is called every
603time a buffer is saved.
ab19c39b
LT
604
605Unless @var{force} is non-@code{nil}, this function only deletes the
606file if it was written by the current Emacs session since the last
607true save.
b1b12a8e
RS
608@end defun
609
ab19c39b 610@defopt delete-auto-save-files
b1b12a8e
RS
611This variable is used by the function
612@code{delete-auto-save-file-if-necessary}. If it is non-@code{nil},
613Emacs deletes auto-save files when a true save is done (in the visited
614file). This saves disk space and unclutters your directory.
ab19c39b 615@end defopt
b1b12a8e
RS
616
617@defun rename-auto-save-file
618This function adjusts the current buffer's auto-save file name if the
619visited file name has changed. It also renames an existing auto-save
ab19c39b
LT
620file, if it was made in the current Emacs session. If the visited
621file name has not changed, this function does nothing.
b1b12a8e
RS
622@end defun
623
0680592c 624@defvar buffer-saved-size
2e00781a 625The value of this buffer-local variable is the length of the current
8241495d 626buffer, when it was last read in, saved, or auto-saved. This is
2e00781a
RS
627used to detect a substantial decrease in size, and turn off auto-saving
628in response.
0680592c 629
8241495d
RS
630If it is @minus{}1, that means auto-saving is temporarily shut off in
631this buffer due to a substantial decrease in size. Explicitly saving
632the buffer stores a positive value in this variable, thus reenabling
633auto-saving. Turning auto-save mode off or on also updates this
634variable, so that the substantial decrease in size is forgotten.
0680592c
RS
635@end defvar
636
9589417c
RS
637@defvar auto-save-list-file-name
638This variable (if non-@code{nil}) specifies a file for recording the
639names of all the auto-save files. Each time Emacs does auto-saving, it
bfe721d1
KH
640writes two lines into this file for each buffer that has auto-saving
641enabled. The first line gives the name of the visited file (it's empty
642if the buffer has none), and the second gives the name of the auto-save
643file.
644
8241495d 645When Emacs exits normally, it deletes this file; if Emacs crashes, you
bfe721d1
KH
646can look in the file to find all the auto-save files that might contain
647work that was otherwise lost. The @code{recover-session} command uses
8241495d 648this file to find them.
9589417c 649
8241495d 650The default name for this file specifies your home directory and starts
ad800164 651with @samp{.saves-}. It also contains the Emacs process @acronym{ID} and the
8241495d 652host name.
9589417c
RS
653@end defvar
654
29b677db
RS
655@defvar auto-save-list-file-prefix
656@tindex auto-save-list-file-prefix
657After Emacs reads your init file, it initializes
658@code{auto-save-list-file-name} (if you have not already set it
659non-@code{nil}) based on this prefix, adding the host name and process
660ID. If you set this to @code{nil} in your init file, then Emacs does
661not initialize @code{auto-save-list-file-name}.
662@end defvar
663
0680592c 664@node Reverting
b1b12a8e
RS
665@section Reverting
666
667 If you have made extensive changes to a file and then change your mind
668about them, you can get rid of them by reading in the previous version
669of the file with the @code{revert-buffer} command. @xref{Reverting, ,
670Reverting a Buffer, emacs, The GNU Emacs Manual}.
671
ab19c39b 672@deffn Command revert-buffer &optional ignore-auto noconfirm preserve-modes
b1b12a8e
RS
673This command replaces the buffer text with the text of the visited
674file on disk. This action undoes all changes since the file was visited
675or saved.
676
1911e6e5 677By default, if the latest auto-save file is more recent than the visited
b581dd19 678file, and the argument @var{ignore-auto} is @code{nil},
8241495d
RS
679@code{revert-buffer} asks the user whether to use that auto-save
680instead. When you invoke this command interactively, @var{ignore-auto}
b581dd19
GM
681is @code{t} if there is no numeric prefix argument; thus, the
682interactive default is not to check the auto-save file.
b1b12a8e
RS
683
684Normally, @code{revert-buffer} asks for confirmation before it changes
685the buffer; but if the argument @var{noconfirm} is non-@code{nil},
686@code{revert-buffer} does not ask for confirmation.
687
ab19c39b
LT
688Normally, this command reinitializes the file's major and minor modes
689using @code{normal-mode}. But if @var{preserve-modes} is
690non-@code{nil}, the modes remain unchanged.
691
b1b12a8e 692Reverting tries to preserve marker positions in the buffer by using the
2e00781a
RS
693replacement feature of @code{insert-file-contents}. If the buffer
694contents and the file contents are identical before the revert
695operation, reverting preserves all the markers. If they are not
8241495d
RS
696identical, reverting does change the buffer; in that case, it preserves
697the markers in the unchanged text (if any) at the beginning and end of
698the buffer. Preserving any additional markers would be problematical.
b1b12a8e
RS
699@end deffn
700
2e00781a 701You can customize how @code{revert-buffer} does its work by setting
29b677db 702the variables described in the rest of this section.
2e00781a 703
ab19c39b 704@defopt revert-without-query
1911e6e5 705This variable holds a list of files that should be reverted without
8241495d
RS
706query. The value is a list of regular expressions. If the visited file
707name matches one of these regular expressions, and the file has changed
708on disk but the buffer is not modified, then @code{revert-buffer}
709reverts the file without asking the user for confirmation.
ab19c39b 710@end defopt
1911e6e5 711
29b677db
RS
712 Some major modes customize @code{revert-buffer} by making
713buffer-local bindings for these variables:
714
b1b12a8e 715@defvar revert-buffer-function
ab19c39b
LT
716The value of this variable is the function to use to revert this
717buffer. If non-@code{nil}, it should be a function with two optional
718arguments to do the work of reverting. The two optional arguments,
719@var{ignore-auto} and @var{noconfirm}, are the arguments that
720@code{revert-buffer} received. If the value is @code{nil}, reverting
721works the usual way.
2e00781a
RS
722
723Modes such as Dired mode, in which the text being edited does not
724consist of a file's contents but can be regenerated in some other
29b677db 725fashion, can give this variable a buffer-local value that is a function to
2e00781a 726regenerate the contents.
b1b12a8e
RS
727@end defvar
728
729@defvar revert-buffer-insert-file-contents-function
8241495d 730The value of this variable, if non-@code{nil}, specifies the function to use to
bfe721d1
KH
731insert the updated contents when reverting this buffer. The function
732receives two arguments: first the file name to use; second, @code{t} if
733the user has asked to read the auto-save file.
29b677db
RS
734
735The reason for a mode to set this variable instead of
736@code{revert-buffer-function} is to avoid duplicating or replacing the
737rest of what @code{revert-buffer} does: asking for confirmation,
738clearing the undo list, deciding the proper major mode, and running the
739hooks listed below.
b1b12a8e
RS
740@end defvar
741
742@defvar before-revert-hook
8241495d 743This normal hook is run by @code{revert-buffer} before
b1b12a8e
RS
744inserting the modified contents---but only if
745@code{revert-buffer-function} is @code{nil}.
b1b12a8e
RS
746@end defvar
747
748@defvar after-revert-hook
8241495d 749This normal hook is run by @code{revert-buffer} after inserting
b1b12a8e
RS
750the modified contents---but only if @code{revert-buffer-function} is
751@code{nil}.
b1b12a8e 752@end defvar
ab5796a9
MB
753
754@ignore
755 arch-tag: 295a6321-e5ab-46d5-aef5-0bb4f447a67f
756@end ignore