From: Stefan Monnier Date: Mon, 2 Jun 2003 20:39:12 +0000 (+0000) Subject: (Fsit_for): Don't lie about the number of args. X-Git-Tag: ttn-vms-21-2-B4~9787 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5435c793fa9db6220a22f5db916e10caaf1df6cd;p=emacs.git (Fsit_for): Don't lie about the number of args. --- diff --git a/src/dispnew.c b/src/dispnew.c index 3cfd97ea3ea..88f6a452236 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -6265,7 +6265,10 @@ An obsolete but still supported form is Where the optional arg MILLISECONDS specifies an additional wait period, in milliseconds; this was useful when Emacs was built without floating point support. -usage: (sit-for SECONDS &optional NODISP) */) +usage: (sit-for SECONDS &optional NODISP OLD-NODISP) */) + +/* The `old-nodisp' stuff is there so that the arglist has the correct + length. Otherwise, `defdvice' will redefine it with fewer args. */ (seconds, milliseconds, nodisp) Lisp_Object seconds, milliseconds, nodisp; {