diff options
Diffstat (limited to 'lisp/emacs-lisp/timer.el')
| -rw-r--r-- | lisp/emacs-lisp/timer.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/timer.el b/lisp/emacs-lisp/timer.el index a1bba2ddb6e..0aa31f717ed 100644 --- a/lisp/emacs-lisp/timer.el +++ b/lisp/emacs-lisp/timer.el | |||
| @@ -124,7 +124,7 @@ of SECS seconds since the epoch. SECS may be a fraction." | |||
| 124 | (floor (mod next-sec-psec 1000000))))) | 124 | (floor (mod next-sec-psec 1000000))))) |
| 125 | 125 | ||
| 126 | (defun timer-relative-time (time secs &optional usecs psecs) | 126 | (defun timer-relative-time (time secs &optional usecs psecs) |
| 127 | "Advance TIME by SECS seconds and optionally USECS nanoseconds | 127 | "Advance TIME by SECS seconds and optionally USECS microseconds |
| 128 | and PSECS picoseconds. SECS may be either an integer or a | 128 | and PSECS picoseconds. SECS may be either an integer or a |
| 129 | floating point number." | 129 | floating point number." |
| 130 | (let ((delta (if (floatp secs) | 130 | (let ((delta (if (floatp secs) |
| @@ -139,7 +139,7 @@ floating point number." | |||
| 139 | (time-less-p (timer--time t1) (timer--time t2))) | 139 | (time-less-p (timer--time t1) (timer--time t2))) |
| 140 | 140 | ||
| 141 | (defun timer-inc-time (timer secs &optional usecs psecs) | 141 | (defun timer-inc-time (timer secs &optional usecs psecs) |
| 142 | "Increment the time set in TIMER by SECS seconds, USECS nanoseconds, | 142 | "Increment the time set in TIMER by SECS seconds, USECS microseconds, |
| 143 | and PSECS picoseconds. SECS may be a fraction. If USECS or PSECS are | 143 | and PSECS picoseconds. SECS may be a fraction. If USECS or PSECS are |
| 144 | omitted, they are treated as zero." | 144 | omitted, they are treated as zero." |
| 145 | (setf (timer--time timer) | 145 | (setf (timer--time timer) |