diff options
| author | Stefan Monnier | 2003-06-02 20:39:12 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-06-02 20:39:12 +0000 |
| commit | 5435c793fa9db6220a22f5db916e10caaf1df6cd (patch) | |
| tree | 7152b0425854b69e633559e4a93af2a1f1b8e68f /src | |
| parent | 9862c13513ba24774e56401c849f897c64415b87 (diff) | |
| download | emacs-5435c793fa9db6220a22f5db916e10caaf1df6cd.tar.gz emacs-5435c793fa9db6220a22f5db916e10caaf1df6cd.zip | |
(Fsit_for): Don't lie about the number of args.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 5 |
1 files changed, 4 insertions, 1 deletions
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 | |||
| 6265 | Where the optional arg MILLISECONDS specifies an additional wait period, | 6265 | Where the optional arg MILLISECONDS specifies an additional wait period, |
| 6266 | in milliseconds; this was useful when Emacs was built without | 6266 | in milliseconds; this was useful when Emacs was built without |
| 6267 | floating point support. | 6267 | floating point support. |
| 6268 | usage: (sit-for SECONDS &optional NODISP) */) | 6268 | usage: (sit-for SECONDS &optional NODISP OLD-NODISP) */) |
| 6269 | |||
| 6270 | /* The `old-nodisp' stuff is there so that the arglist has the correct | ||
| 6271 | length. Otherwise, `defdvice' will redefine it with fewer args. */ | ||
| 6269 | (seconds, milliseconds, nodisp) | 6272 | (seconds, milliseconds, nodisp) |
| 6270 | Lisp_Object seconds, milliseconds, nodisp; | 6273 | Lisp_Object seconds, milliseconds, nodisp; |
| 6271 | { | 6274 | { |