Function: with-timeout-unsuspend

with-timeout-unsuspend is a byte-compiled function defined in timer.el.gz.

Signature

(with-timeout-unsuspend TIMER-SPEC-LIST)

Documentation

Restart the clock for with-timeout.

The argument should be a value previously returned by with-timeout-suspend.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/timer.el.gz
(defun with-timeout-unsuspend (timer-spec-list)
  "Restart the clock for `with-timeout'.
The argument should be a value previously returned by `with-timeout-suspend'."
  (dolist (elt timer-spec-list)
    (let ((timer (car elt))
	  (delay (cadr elt)))
      (timer-set-time timer (time-add nil delay))
      (timer-activate timer))))