aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1998-01-07 09:41:30 +0000
committerEli Zaretskii1998-01-07 09:41:30 +0000
commit92631216919566dd1bfc6a880fc35c2ef0611457 (patch)
treedfa3d84a812a0a8c6300cf167f0ba4c757b93160
parent30d57b8e6e138b354768ea8b218412e55e027bbc (diff)
downloademacs-92631216919566dd1bfc6a880fc35c2ef0611457.tar.gz
emacs-92631216919566dd1bfc6a880fc35c2ef0611457.zip
(delete-auto-save-files): Say in the doc string that
auto-save file will not be deleted if the buffer has unsaved changes.
-rw-r--r--lisp/files.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 4d977185d26..a11d013dc86 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -40,7 +40,10 @@
40 40
41 41
42(defcustom delete-auto-save-files t 42(defcustom delete-auto-save-files t
43 "*Non-nil means delete auto-save file when a buffer is saved or killed." 43 "*Non-nil means delete auto-save file when a buffer is saved or killed.
44
45Note that auto-save file will not be deleted if the buffer is killed
46when it has unsaved changes."
44 :type 'boolean 47 :type 'boolean
45 :group 'auto-save) 48 :group 'auto-save)
46 49