diff options
author | Kim F. Storm <storm@cua.dk> | 2006-07-11 20:11:10 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2006-07-11 20:11:10 +0000 |
commit | 83f8d90363c117b200bdffe80949e4bd212c6196 (patch) | |
tree | bf8568664776077bc55255ced4a1e08e2b98f269 /src/fileio.c | |
parent | 666dc232b0361c65e3a22cfa16bf733a6c043c1b (diff) | |
download | emacs-83f8d90363c117b200bdffe80949e4bd212c6196.tar.gz emacs-83f8d90363c117b200bdffe80949e4bd212c6196.tar.bz2 emacs-83f8d90363c117b200bdffe80949e4bd212c6196.zip |
(Fdo_auto_save): Update/simplify sit_for calls.
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 839bf86af53..b4fc934900b 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -6055,7 +6055,7 @@ A non-nil CURRENT-ONLY argument means save only current buffer. */) { /* If we are going to restore an old message, give time to read ours. */ - sit_for (1, 0, 0, 0, 0); + sit_for (make_number (1), 0, 0); restore_message (); } else |