summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-02-08 06:29:29 +0000
committerRichard M. Stallman <rms@gnu.org>1995-02-08 06:29:29 +0000
commitf2a4aa93901e38818bf345a7f615f6536f2b4f82 (patch)
treebd109912336d10fa05a1559b40a3acd540fef2ce /etc
parent2e429c4bbab77fa5bea6b45023cd4aae911af476 (diff)
downloademacs-f2a4aa93901e38818bf345a7f615f6536f2b4f82.tar.gz
Talk about auto save.
Diffstat (limited to 'etc')
-rw-r--r--etc/TUTORIAL18
1 files changed, 18 insertions, 0 deletions
diff --git a/etc/TUTORIAL b/etc/TUTORIAL
index 91160d8aa20..5ffc76caa03 100644
--- a/etc/TUTORIAL
+++ b/etc/TUTORIAL
@@ -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
-----------