Function: timer-inc-time
timer-inc-time is a byte-compiled function defined in timer.el.gz.
Signature
(timer-inc-time TIMER SECS &optional USECS PSECS)
Documentation
Increment the time set in TIMER by SECS seconds.
Optionally also increment it by USECS microseconds, and PSECS picoseconds. If USECS or PSECS are omitted, they are treated as zero.
SECS may be a fraction.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/timer.el.gz
(defun timer-inc-time (timer secs &optional usecs psecs)
"Increment the time set in TIMER by SECS seconds.
Optionally also increment it by USECS microseconds, and PSECS
picoseconds. If USECS or PSECS are omitted, they are treated as
zero.
SECS may be a fraction."
(setf (timer--time timer)
(timer-relative-time (timer--time timer) secs usecs psecs)))