summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-03-05 20:36:38 +0000
committerRichard M. Stallman <rms@gnu.org>1994-03-05 20:36:38 +0000
commit012d4cdc7f11a7d5f48c75815418028c4848d6ae (patch)
tree6efa7cbce559fa19b6af3b0bbd24ad62ddc86d4b /src
parent88ce066e29dc14567fbe94cc749d05d22a809a5d (diff)
downloademacs-012d4cdc7f11a7d5f48c75815418028c4848d6ae.tar.gz
(Fdo_auto_save): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/fileio.c b/src/fileio.c
index e24dca08306..a26e8010f7f 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3410,7 +3410,8 @@ This is all buffers that have auto-saving enabled\n\
and are changed since last auto-saved.\n\
Auto-saving writes the buffer into a file\n\
so that your editing is not lost if the system crashes.\n\
-This file is not the file you visited; that changes only when you save.\n\n\
+This file is not the file you visited; that changes only when you save.\n\
+Normally we run the normal hook `auto-save-hook' before saving.\n\n\
Non-nil first argument means do not print any message if successful.\n\
Non-nil second argument means save only current buffer.")
(no_message, current_only)
@@ -3437,8 +3438,6 @@ Non-nil second argument means save only current buffer.")
if (minibuf_level)
no_message = Qt;
- /* Vrun_hooks is nil before emacs is dumped, and inc-vers.el will
- eventually call do-auto-save, so don't err here in that case. */
if (!NILP (Vrun_hooks))
call1 (Vrun_hooks, intern ("auto-save-hook"));