diff options
| author | Kim F. Storm | 2006-07-11 20:11:10 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-07-11 20:11:10 +0000 |
| commit | 83f8d90363c117b200bdffe80949e4bd212c6196 (patch) | |
| tree | bf8568664776077bc55255ced4a1e08e2b98f269 /src | |
| parent | 666dc232b0361c65e3a22cfa16bf733a6c043c1b (diff) | |
| download | emacs-83f8d90363c117b200bdffe80949e4bd212c6196.tar.gz emacs-83f8d90363c117b200bdffe80949e4bd212c6196.zip | |
(Fdo_auto_save): Update/simplify sit_for calls.
Diffstat (limited to 'src')
| -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. */) | |||
| 6055 | { | 6055 | { |
| 6056 | /* If we are going to restore an old message, | 6056 | /* If we are going to restore an old message, |
| 6057 | give time to read ours. */ | 6057 | give time to read ours. */ |
| 6058 | sit_for (1, 0, 0, 0, 0); | 6058 | sit_for (make_number (1), 0, 0); |
| 6059 | restore_message (); | 6059 | restore_message (); |
| 6060 | } | 6060 | } |
| 6061 | else | 6061 | else |