diff options
| author | Richard M. Stallman | 2007-10-24 08:23:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-10-24 08:23:01 +0000 |
| commit | 3a704bd7e359b1ced7f699b83c8dd6b2d7548cb1 (patch) | |
| tree | f09e727405d2211c20d8cd3168925d990abdc613 | |
| parent | 80281b01bf8bfa2b1e30cb18964f3f4c61e9ce69 (diff) | |
| download | emacs-3a704bd7e359b1ced7f699b83c8dd6b2d7548cb1.tar.gz emacs-3a704bd7e359b1ced7f699b83c8dd6b2d7548cb1.zip | |
(Fcurrent_idle_time): Doc fix.
| -rw-r--r-- | src/keyboard.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 538c0a0d1b0..ffba913fc55 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -4612,12 +4612,14 @@ timer_check (do_it_now) | |||
| 4612 | } | 4612 | } |
| 4613 | 4613 | ||
| 4614 | DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0, | 4614 | DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0, |
| 4615 | doc: /* Return the current length of Emacs idleness. | 4615 | doc: /* Return the current length of Emacs idleness, or nil. |
| 4616 | The value is returned as a list of three integers. The first has the | 4616 | The value when Emacs is idle is a list of three integers. The first has the |
| 4617 | most significant 16 bits of the seconds, while the second has the | 4617 | most significant 16 bits of the seconds, while the second has the |
| 4618 | least significant 16 bits. The third integer gives the microsecond | 4618 | least significant 16 bits. The third integer gives the microsecond |
| 4619 | count. | 4619 | count. |
| 4620 | 4620 | ||
| 4621 | The value when Emacs is not idle is nil. | ||
| 4622 | |||
| 4621 | The microsecond count is zero on systems that do not provide | 4623 | The microsecond count is zero on systems that do not provide |
| 4622 | resolution finer than a second. */) | 4624 | resolution finer than a second. */) |
| 4623 | () | 4625 | () |