From: Kim F. Storm Date: Tue, 11 Jul 2006 20:11:23 +0000 (+0000) Subject: (Fcall_interactively): Update/simplify sit_for calls. X-Git-Tag: emacs-pretest-22.0.90~1537 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e7c4e229ca21e2b93cb65ea055b6f000862feed5;p=emacs.git (Fcall_interactively): Update/simplify sit_for calls. --- 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. */) do { Lisp_Object tem; - if (! first) + if (! first) { message ("Please enter a number."); - sit_for (1, 0, 0, 0, 0); + sit_for (make_number (1), 0, 0); } first = 0;