aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1992-08-31 08:07:09 +0000
committerRichard M. Stallman1992-08-31 08:07:09 +0000
commitb67f2ca56b9ab35fadb10279cb0ca2badb18c801 (patch)
tree970a2103e95bdfac61e59aed3b84050023828775 /src
parente7691e9c5d868336baed7be9eedd063071ad22b9 (diff)
downloademacs-b67f2ca56b9ab35fadb10279cb0ca2badb18c801.tar.gz
emacs-b67f2ca56b9ab35fadb10279cb0ca2badb18c801.zip
(Fdo_auto_save): Always call record_auto_save.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 6e3c8fdd330..01de4f3725e 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2814,8 +2814,8 @@ Non-nil second argument means save only current buffer.")
2814 } 2814 }
2815 } 2815 }
2816 2816
2817 if (auto_saved) 2817 /* Prevent another auto save till enough input events come in. */
2818 record_auto_save (); 2818 record_auto_save ();
2819 2819
2820 if (auto_saved && NILP (nomsg)) 2820 if (auto_saved && NILP (nomsg))
2821 message1 (omessage ? omessage : "Auto-saving...done"); 2821 message1 (omessage ? omessage : "Auto-saving...done");