*** empty log message ***
[bpt/emacs.git] / lispref / backups.texi
CommitLineData
b1b12a8e
RS
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
f9f59935 3@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
b1b12a8e
RS
4@c See the file elisp.texi for copying conditions.
5@setfilename ../info/backups
6@node Backups and Auto-Saving, Buffers, Files, Top
7@chapter Backups and Auto-Saving
8
9 Backup files and auto-save files are two methods by which Emacs tries
10to protect the user from the consequences of crashes or of the user's
11own errors. Auto-saving preserves the text from earlier in the current
12editing session; backup files preserve file contents prior to the
13current session.
14
15@menu
16* Backup Files:: How backup files are made; how their names are chosen.
17* Auto-Saving:: How auto-save files are made; how their names are chosen.
18* Reverting:: @code{revert-buffer}, and how to customize what it does.
19@end menu
20
0680592c 21@node Backup Files
b1b12a8e
RS
22@section Backup Files
23@cindex backup file
24
25 A @dfn{backup file} is a copy of the old contents of a file you are
26editing. Emacs makes a backup file the first time you save a buffer
27into its visited file. Normally, this means that the backup file
28contains the contents of the file as it was before the current editing
29session. The contents of the backup file normally remain unchanged once
30it exists.
31
32 Backups are usually made by renaming the visited file to a new name.
33Optionally, you can specify that backup files should be made by copying
34the visited file. This choice makes a difference for files with
35multiple names; it also can affect whether the edited file remains owned
36by the original owner or becomes owned by the user editing it.
37
38 By default, Emacs makes a single backup file for each file edited.
39You can alternatively request numbered backups; then each new backup
40file gets a new name. You can delete old numbered backups when you
41don't want them any more, or Emacs can delete them automatically.
42
43@menu
44* Making Backups:: How Emacs makes backup files, and when.
45* Rename or Copy:: Two alternatives: renaming the old file or copying it.
46* Numbered Backups:: Keeping multiple backups for each source file.
47* Backup Names:: How backup file names are computed; customization.
48@end menu
49
0680592c 50@node Making Backups
b1b12a8e
RS
51@subsection Making Backup Files
52
53@defun backup-buffer
54 This function makes a backup of the file visited by the current
55buffer, if appropriate. It is called by @code{save-buffer} before
56saving the buffer the first time.
57@end defun
58
59@defvar buffer-backed-up
60 This buffer-local variable indicates whether this buffer's file has
61been backed up on account of this buffer. If it is non-@code{nil}, then
62the backup file has been written. Otherwise, the file should be backed
2e00781a 63up when it is next saved (if backups are enabled). This is a
b1b12a8e
RS
64permanent local; @code{kill-local-variables} does not alter it.
65@end defvar
66
67@defopt make-backup-files
bfe721d1 68This variable determines whether or not to make backup files. If it
b1b12a8e 69is non-@code{nil}, then Emacs creates a backup of each file when it is
bfe721d1
KH
70saved for the first time---provided that @code{backup-inhibited}
71is @code{nil} (see below).
b1b12a8e 72
bfe721d1 73The following example shows how to change the @code{make-backup-files}
f9f59935
RS
74variable only in the Rmail buffers and not elsewhere. Setting it
75@code{nil} stops Emacs from making backups of these files, which may
76save disk space. (You would put this code in your @file{.emacs} file.)
b1b12a8e
RS
77
78@smallexample
79@group
80(add-hook 'rmail-mode-hook
81 (function (lambda ()
82 (make-local-variable
83 'make-backup-files)
84 (setq make-backup-files nil))))
85@end group
86@end smallexample
87@end defopt
88
2e00781a 89@defvar backup-enable-predicate
b1b12a8e 90This variable's value is a function to be called on certain occasions to
2e00781a
RS
91decide whether a file should have backup files. The function receives
92one argument, a file name to consider. If the function returns
93@code{nil}, backups are disabled for that file. Otherwise, the other
94variables in this section say whether and how to make backups.
b1b12a8e
RS
95
96The default value is this:
97
98@example
99(lambda (name)
100 (or (< (length name) 5)
101 (not (string-equal "/tmp/"
102 (substring name 0 5)))))
103@end example
104@end defvar
105
106@defvar backup-inhibited
107If this variable is non-@code{nil}, backups are inhibited. It records
108the result of testing @code{backup-enable-predicate} on the visited file
109name. It can also coherently be used by other mechanisms that inhibit
bfe721d1
KH
110backups based on which file is visited. For example, VC sets this
111variable non-@code{nil} to prevent making backups for files managed
112with a version control system.
2e00781a 113
bfe721d1
KH
114This is a permanent local, so that changing the major mode does not lose
115its value. Major modes should not set this variable---they should set
2e00781a 116@code{make-backup-files} instead.
b1b12a8e
RS
117@end defvar
118
0680592c 119@node Rename or Copy
b1b12a8e
RS
120@subsection Backup by Renaming or by Copying?
121@cindex backup files, how to make them
122
123 There are two ways that Emacs can make a backup file:
124
125@itemize @bullet
126@item
127Emacs can rename the original file so that it becomes a backup file, and
128then write the buffer being saved into a new file. After this
129procedure, any other names (i.e., hard links) of the original file now
130refer to the backup file. The new file is owned by the user doing the
131editing, and its group is the default for new files written by the user
132in that directory.
133
134@item
135Emacs can copy the original file into a backup file, and then overwrite
136the original file with new contents. After this procedure, any other
f9f59935
RS
137names (i.e., hard links) of the original file continue to refer to the
138current (updated) version of the file. The file's owner and group will
139be unchanged.
b1b12a8e
RS
140@end itemize
141
142 The first method, renaming, is the default.
143
144 The variable @code{backup-by-copying}, if non-@code{nil}, says to use
145the second method, which is to copy the original file and overwrite it
146with the new buffer contents. The variable @code{file-precious-flag},
147if non-@code{nil}, also has this effect (as a sideline of its main
148significance). @xref{Saving Buffers}.
149
150@defvar backup-by-copying
151If this variable is non-@code{nil}, Emacs always makes backup files by
152copying.
153@end defvar
154
155 The following two variables, when non-@code{nil}, cause the second
156method to be used in certain special cases. They have no effect on the
157treatment of files that don't fall into the special cases.
158
159@defvar backup-by-copying-when-linked
160If this variable is non-@code{nil}, Emacs makes backups by copying for
161files with multiple names (hard links).
162
163This variable is significant only if @code{backup-by-copying} is
164@code{nil}, since copying is always used when that variable is
165non-@code{nil}.
166@end defvar
167
168@defvar backup-by-copying-when-mismatch
169If this variable is non-@code{nil}, Emacs makes backups by copying in cases
170where renaming would change either the owner or the group of the file.
171
172The value has no effect when renaming would not alter the owner or
173group of the file; that is, for files which are owned by the user and
174whose group matches the default for a new file created there by the
175user.
176
177This variable is significant only if @code{backup-by-copying} is
178@code{nil}, since copying is always used when that variable is
179non-@code{nil}.
180@end defvar
181
0680592c 182@node Numbered Backups
b1b12a8e
RS
183@subsection Making and Deleting Numbered Backup Files
184
185 If a file's name is @file{foo}, the names of its numbered backup
186versions are @file{foo.~@var{v}~}, for various integers @var{v}, like
187this: @file{foo.~1~}, @file{foo.~2~}, @file{foo.~3~}, @dots{},
188@file{foo.~259~}, and so on.
189
190@defopt version-control
191This variable controls whether to make a single non-numbered backup
192file or multiple numbered backups.
193
194@table @asis
195@item @code{nil}
196Make numbered backups if the visited file already has numbered backups;
197otherwise, do not.
198
199@item @code{never}
200Do not make numbered backups.
201
202@item @var{anything else}
2e00781a 203Make numbered backups.
b1b12a8e
RS
204@end table
205@end defopt
206
207 The use of numbered backups ultimately leads to a large number of
208backup versions, which must then be deleted. Emacs can do this
2e00781a 209automatically or it can ask the user whether to delete them.
b1b12a8e
RS
210
211@defopt kept-new-versions
2e00781a 212The value of this variable is the number of newest versions to keep
b1b12a8e
RS
213when a new numbered backup is made. The newly made backup is included
214in the count. The default value is 2.
215@end defopt
216
217@defopt kept-old-versions
218The value of this variable is the number of oldest versions to keep
219when a new numbered backup is made. The default value is 2.
220@end defopt
221
222 If there are backups numbered 1, 2, 3, 5, and 7, and both of these
223variables have the value 2, then the backups numbered 1 and 2 are kept
224as old versions and those numbered 5 and 7 are kept as new versions;
2e00781a 225backup version 3 is excess. The function @code{find-backup-file-name}
b1b12a8e
RS
226(@pxref{Backup Names}) is responsible for determining which backup
227versions to delete, but does not delete them itself.
228
f9f59935
RS
229@tindex delete-old-versions
230@defopt delete-old-versions
b1b12a8e
RS
231If this variable is non-@code{nil}, then saving a file deletes excess
232backup versions silently. Otherwise, it asks the user whether to delete
233them.
234@end defopt
235
236@defopt dired-kept-versions
237This variable specifies how many of the newest backup versions to keep
238in the Dired command @kbd{.} (@code{dired-clean-directory}). That's the
2e00781a 239same thing @code{kept-new-versions} specifies when you make a new backup
b1b12a8e
RS
240file. The default value is 2.
241@end defopt
242
0680592c 243@node Backup Names
b1b12a8e
RS
244@subsection Naming Backup Files
245
246 The functions in this section are documented mainly because you can
247customize the naming conventions for backup files by redefining them.
248If you change one, you probably need to change the rest.
249
250@defun backup-file-name-p filename
251This function returns a non-@code{nil} value if @var{filename} is a
252possible name for a backup file. A file with the name @var{filename}
253need not exist; the function just checks the name.
254
255@smallexample
256@group
257(backup-file-name-p "foo")
258 @result{} nil
259@end group
260@group
261(backup-file-name-p "foo~")
262 @result{} 3
263@end group
264@end smallexample
265
266The standard definition of this function is as follows:
267
268@smallexample
269@group
270(defun backup-file-name-p (file)
271 "Return non-nil if FILE is a backup file \
272name (numeric or not)..."
273 (string-match "~$" file))
274@end group
275@end smallexample
276
277@noindent
278Thus, the function returns a non-@code{nil} value if the file name ends
279with a @samp{~}. (We use a backslash to split the documentation
280string's first line into two lines in the text, but produce just one
281line in the string itself.)
282
283This simple expression is placed in a separate function to make it easy
284to redefine for customization.
285@end defun
286
287@defun make-backup-file-name filename
2e00781a 288This function returns a string that is the name to use for a
b1b12a8e
RS
289non-numbered backup file for file @var{filename}. On Unix, this is just
290@var{filename} with a tilde appended.
291
292The standard definition of this function is as follows:
293
294@smallexample
295@group
296(defun make-backup-file-name (file)
297 "Create the non-numeric backup file name for FILE.
298@dots{}"
299 (concat file "~"))
300@end group
301@end smallexample
302
2e00781a 303You can change the backup-file naming convention by redefining this
b1b12a8e 304function. The following example redefines @code{make-backup-file-name}
2e00781a 305to prepend a @samp{.} in addition to appending a tilde:
b1b12a8e
RS
306
307@smallexample
308@group
309(defun make-backup-file-name (filename)
310 (concat "." filename "~"))
311@end group
312
313@group
314(make-backup-file-name "backups.texi")
315 @result{} ".backups.texi~"
316@end group
317@end smallexample
318@end defun
319
320@defun find-backup-file-name filename
321This function computes the file name for a new backup file for
322@var{filename}. It may also propose certain existing backup files for
323deletion. @code{find-backup-file-name} returns a list whose @sc{car} is
324the name for the new backup file and whose @sc{cdr} is a list of backup
325files whose deletion is proposed.
326
327Two variables, @code{kept-old-versions} and @code{kept-new-versions},
328determine which backup versions should be kept. This function keeps
329those versions by excluding them from the @sc{cdr} of the value.
330@xref{Numbered Backups}.
331
332In this example, the value says that @file{~rms/foo.~5~} is the name
333to use for the new backup file, and @file{~rms/foo.~3~} is an ``excess''
334version that the caller should consider deleting now.
335
336@smallexample
337@group
338(find-backup-file-name "~rms/foo")
339 @result{} ("~rms/foo.~5~" "~rms/foo.~3~")
340@end group
341@end smallexample
342@end defun
343
344@c Emacs 19 feature
345@defun file-newest-backup filename
346This function returns the name of the most recent backup file for
2e00781a 347@var{filename}, or @code{nil} if that file has no backup files.
b1b12a8e 348
2e00781a
RS
349Some file comparison commands use this function so that they can
350automatically compare a file with its most recent backup.
b1b12a8e
RS
351@end defun
352
0680592c 353@node Auto-Saving
b1b12a8e
RS
354@section Auto-Saving
355@cindex auto-saving
356
357 Emacs periodically saves all files that you are visiting; this is
358called @dfn{auto-saving}. Auto-saving prevents you from losing more
359than a limited amount of work if the system crashes. By default,
360auto-saves happen every 300 keystrokes, or after around 30 seconds of
361idle time. @xref{Auto-Save, Auto-Save, Auto-Saving: Protection Against
362Disasters, emacs, The GNU Emacs Manual}, for information on auto-save
363for users. Here we describe the functions used to implement auto-saving
364and the variables that control them.
365
366@defvar buffer-auto-save-file-name
367This buffer-local variable is the name of the file used for
368auto-saving the current buffer. It is @code{nil} if the buffer
369should not be auto-saved.
370
371@example
372@group
373buffer-auto-save-file-name
374=> "/xcssun/users/rms/lewis/#files.texi#"
375@end group
376@end example
377@end defvar
378
379@deffn Command auto-save-mode arg
380When used interactively without an argument, this command is a toggle
381switch: it turns on auto-saving of the current buffer if it is off, and
382vice-versa. With an argument @var{arg}, the command turns auto-saving
383on if the value of @var{arg} is @code{t}, a nonempty list, or a positive
384integer. Otherwise, it turns auto-saving off.
385@end deffn
386
387@defun auto-save-file-name-p filename
388This function returns a non-@code{nil} value if @var{filename} is a
389string that could be the name of an auto-save file. It works based on
390knowledge of the naming convention for auto-save files: a name that
391begins and ends with hash marks (@samp{#}) is a possible auto-save file
392name. The argument @var{filename} should not contain a directory part.
393
394@example
395@group
396(make-auto-save-file-name)
397 @result{} "/xcssun/users/rms/lewis/#files.texi#"
398@end group
399@group
400(auto-save-file-name-p "#files.texi#")
401 @result{} 0
402@end group
403@group
404(auto-save-file-name-p "files.texi")
405 @result{} nil
406@end group
407@end example
408
409The standard definition of this function is as follows:
410
411@example
412@group
413(defun auto-save-file-name-p (filename)
414 "Return non-nil if FILENAME can be yielded by..."
415 (string-match "^#.*#$" filename))
416@end group
417@end example
418
419This function exists so that you can customize it if you wish to
420change the naming convention for auto-save files. If you redefine it,
421be sure to redefine the function @code{make-auto-save-file-name}
422correspondingly.
423@end defun
424
425@defun make-auto-save-file-name
426This function returns the file name to use for auto-saving the current
427buffer. This is just the file name with hash marks (@samp{#}) appended
428and prepended to it. This function does not look at the variable
2e00781a
RS
429@code{auto-save-visited-file-name} (described below); you should check
430that before calling this function.
b1b12a8e
RS
431
432@example
433@group
434(make-auto-save-file-name)
435 @result{} "/xcssun/users/rms/lewis/#backup.texi#"
436@end group
437@end example
438
439The standard definition of this function is as follows:
440
441@example
442@group
443(defun make-auto-save-file-name ()
444 "Return file name to use for auto-saves \
445of current buffer.
446@dots{}"
447 (if buffer-file-name
448@end group
449@group
450 (concat
451 (file-name-directory buffer-file-name)
452 "#"
453 (file-name-nondirectory buffer-file-name)
454 "#")
455 (expand-file-name
456 (concat "#%" (buffer-name) "#"))))
457@end group
458@end example
459
460This exists as a separate function so that you can redefine it to
461customize the naming convention for auto-save files. Be sure to
462change @code{auto-save-file-name-p} in a corresponding way.
463@end defun
464
465@defvar auto-save-visited-file-name
466If this variable is non-@code{nil}, Emacs auto-saves buffers in
467the files they are visiting. That is, the auto-save is done in the same
2e00781a 468file that you are editing. Normally, this variable is @code{nil}, so
b1b12a8e
RS
469auto-save files have distinct names that are created by
470@code{make-auto-save-file-name}.
471
472When you change the value of this variable, the value does not take
473effect until the next time auto-save mode is reenabled in any given
474buffer. If auto-save mode is already enabled, auto-saves continue to go
475in the same file name until @code{auto-save-mode} is called again.
476@end defvar
477
478@defun recent-auto-save-p
479This function returns @code{t} if the current buffer has been
480auto-saved since the last time it was read in or saved.
481@end defun
482
483@defun set-buffer-auto-saved
484This function marks the current buffer as auto-saved. The buffer will
485not be auto-saved again until the buffer text is changed again. The
486function returns @code{nil}.
487@end defun
488
489@defopt auto-save-interval
490The value of this variable is the number of characters that Emacs
491reads from the keyboard between auto-saves. Each time this many more
492characters are read, auto-saving is done for all buffers in which it is
493enabled.
494@end defopt
495
496@defopt auto-save-timeout
497The value of this variable is the number of seconds of idle time that
498should cause auto-saving. Each time the user pauses for this long,
499Emacs auto-saves any buffers that need it. (Actually, the specified
500timeout is multiplied by a factor depending on the size of the current
501buffer.)
502@end defopt
503
504@defvar auto-save-hook
505This normal hook is run whenever an auto-save is about to happen.
506@end defvar
507
508@defopt auto-save-default
509If this variable is non-@code{nil}, buffers that are visiting files
510have auto-saving enabled by default. Otherwise, they do not.
511@end defopt
512
bfe721d1 513@deffn Command do-auto-save &optional no-message current-only
b1b12a8e
RS
514This function auto-saves all buffers that need to be auto-saved. It
515saves all buffers for which auto-saving is enabled and that have been
516changed since the previous auto-save.
517
518Normally, if any buffers are auto-saved, a message that says
519@samp{Auto-saving...} is displayed in the echo area while auto-saving is
520going on. However, if @var{no-message} is non-@code{nil}, the message
521is inhibited.
bfe721d1
KH
522
523If @var{current-only} is non-@code{nil}, only the current buffer
524is auto-saved.
b1b12a8e
RS
525@end deffn
526
527@defun delete-auto-save-file-if-necessary
528This function deletes the current buffer's auto-save file if
529@code{delete-auto-save-files} is non-@code{nil}. It is called every
530time a buffer is saved.
531@end defun
532
533@defvar delete-auto-save-files
534This variable is used by the function
535@code{delete-auto-save-file-if-necessary}. If it is non-@code{nil},
536Emacs deletes auto-save files when a true save is done (in the visited
537file). This saves disk space and unclutters your directory.
538@end defvar
539
540@defun rename-auto-save-file
541This function adjusts the current buffer's auto-save file name if the
542visited file name has changed. It also renames an existing auto-save
543file. If the visited file name has not changed, this function does
544nothing.
545@end defun
546
0680592c 547@defvar buffer-saved-size
2e00781a
RS
548The value of this buffer-local variable is the length of the current
549buffer as of the last time it was read in, saved, or auto-saved. This is
550used to detect a substantial decrease in size, and turn off auto-saving
551in response.
0680592c
RS
552
553If it is -1, that means auto-saving is temporarily shut off in this
554buffer due to a substantial deletion. Explicitly saving the buffer
bfe721d1 555stores a positive value in this variable, thus reenabling auto-saving.
2e00781a 556Turning auto-save mode off or on also alters this variable.
0680592c
RS
557@end defvar
558
9589417c
RS
559@defvar auto-save-list-file-name
560This variable (if non-@code{nil}) specifies a file for recording the
561names of all the auto-save files. Each time Emacs does auto-saving, it
bfe721d1
KH
562writes two lines into this file for each buffer that has auto-saving
563enabled. The first line gives the name of the visited file (it's empty
564if the buffer has none), and the second gives the name of the auto-save
565file.
566
567If Emacs exits normally, it deletes this file. If Emacs crashes, you
568can look in the file to find all the auto-save files that might contain
569work that was otherwise lost. The @code{recover-session} command uses
570these files.
9589417c
RS
571
572The default name for this file is in your home directory and starts with
573@samp{.saves-}. It also contains the Emacs process @sc{id} and the host
574name.
575@end defvar
576
0680592c 577@node Reverting
b1b12a8e
RS
578@section Reverting
579
580 If you have made extensive changes to a file and then change your mind
581about them, you can get rid of them by reading in the previous version
582of the file with the @code{revert-buffer} command. @xref{Reverting, ,
583Reverting a Buffer, emacs, The GNU Emacs Manual}.
584
585@deffn Command revert-buffer &optional check-auto-save noconfirm
586This command replaces the buffer text with the text of the visited
587file on disk. This action undoes all changes since the file was visited
588or saved.
589
590If the argument @var{check-auto-save} is non-@code{nil}, and the
591latest auto-save file is more recent than the visited file,
592@code{revert-buffer} asks the user whether to use that instead.
593Otherwise, it always uses the text of the visited file itself.
594Interactively, @var{check-auto-save} is set if there is a numeric prefix
595argument.
596
597Normally, @code{revert-buffer} asks for confirmation before it changes
598the buffer; but if the argument @var{noconfirm} is non-@code{nil},
599@code{revert-buffer} does not ask for confirmation.
600
601Reverting tries to preserve marker positions in the buffer by using the
2e00781a
RS
602replacement feature of @code{insert-file-contents}. If the buffer
603contents and the file contents are identical before the revert
604operation, reverting preserves all the markers. If they are not
605identical, reverting does change the buffer; then it preserves the
606markers in the unchanged text (if any) at the beginning and end of the
607buffer. Preserving any additional markers would be problematical.
b1b12a8e
RS
608@end deffn
609
2e00781a
RS
610You can customize how @code{revert-buffer} does its work by setting
611these variables---typically, as buffer-local variables.
612
b1b12a8e 613@defvar revert-buffer-function
2e00781a
RS
614The value of this variable is the function to use to revert this buffer.
615If non-@code{nil}, it is called as a function with no arguments to do
616the work of reverting. If the value is @code{nil}, reverting works the
617usual way.
618
619Modes such as Dired mode, in which the text being edited does not
620consist of a file's contents but can be regenerated in some other
621fashion, give this variable a buffer-local value that is a function to
622regenerate the contents.
b1b12a8e
RS
623@end defvar
624
625@defvar revert-buffer-insert-file-contents-function
2e00781a 626The value of this variable, if non-@code{nil}, is the function to use to
bfe721d1
KH
627insert the updated contents when reverting this buffer. The function
628receives two arguments: first the file name to use; second, @code{t} if
629the user has asked to read the auto-save file.
b1b12a8e
RS
630@end defvar
631
632@defvar before-revert-hook
633This normal hook is run by @code{revert-buffer} before actually
634inserting the modified contents---but only if
635@code{revert-buffer-function} is @code{nil}.
636
637Font Lock mode uses this hook to record that the buffer contents are no
638longer fontified.
639@end defvar
640
641@defvar after-revert-hook
642This normal hook is run by @code{revert-buffer} after actually inserting
643the modified contents---but only if @code{revert-buffer-function} is
644@code{nil}.
645
646Font Lock mode uses this hook to recompute the fonts for the updated
647buffer contents.
648@end defvar
649