aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2006-07-11 20:11:23 +0000
committerKim F. Storm2006-07-11 20:11:23 +0000
commite7c4e229ca21e2b93cb65ea055b6f000862feed5 (patch)
tree5de672672b8d627b4e720822dd1b61ec79a9fbff /src
parent83f8d90363c117b200bdffe80949e4bd212c6196 (diff)
downloademacs-e7c4e229ca21e2b93cb65ea055b6f000862feed5.tar.gz
emacs-e7c4e229ca21e2b93cb65ea055b6f000862feed5.zip
(Fcall_interactively): Update/simplify sit_for calls.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c
index ae10e64e1de..741f61d068b 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -721,10 +721,10 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */)
721 do 721 do
722 { 722 {
723 Lisp_Object tem; 723 Lisp_Object tem;
724 if (! first) 724 if (! first)
725 { 725 {
726 message ("Please enter a number."); 726 message ("Please enter a number.");
727 sit_for (1, 0, 0, 0, 0); 727 sit_for (make_number (1), 0, 0);
728 } 728 }
729 first = 0; 729 first = 0;
730 730