1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-25 07:40:40 -07:00

(Fsit_for): Don't lie about the number of args.

This commit is contained in:
Stefan Monnier 2003-06-02 20:39:12 +00:00
parent 9862c13513
commit 5435c793fa

View file

@ -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;
{