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