]> git.eshelyaron.com Git - emacs.git/commitdiff
Talk about auto save.
authorRichard M. Stallman <rms@gnu.org>
Wed, 8 Feb 1995 06:29:29 +0000 (06:29 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 8 Feb 1995 06:29:29 +0000 (06:29 +0000)
etc/TUTORIAL

index 91160d8aa20d022f8190e33ca2e8e2c3e765610d..5ffc76caa036ef9e983876b6ac73649be8ed8658 100644 (file)
@@ -558,6 +558,24 @@ to replace it with--each one ended with a Return.
    after the cursor.
 
 
+* AUTO SAVE
+-----------
+
+When you have made changes in a file, but you have not saved them yet,
+they could be lost if your computer crashes.  To protect you from
+this, Emacs writes "auto save" files periodically.  The auto save file
+name as a # at the beginning and the end; for example, if your file is
+named "hello.c", its auto save file's name is "#hello.c#".  When you
+save the file in the normal way, its auto save file is no longer
+necessary so Emacs deletes it.
+
+If the computer crashes, you can recover your auto-saved editing by
+finding the file normally (the file you were editing, not the auto
+save file) and then typing M-x recover file<return>.  When it asks for
+confirmation, type yes<return> to go ahead and recover the auto-save
+data.
+
+
 * MODE LINE
 -----------