Function: dframe-timer-fn

dframe-timer-fn is a byte-compiled function defined in dframe.el.gz.

Signature

(dframe-timer-fn)

Documentation

Called due to the dframe timer.

Evaluates all cached timer functions in sequence.

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-timer-fn ()
  "Called due to the dframe timer.
Evaluates all cached timer functions in sequence."
  (let ((l dframe-client-functions))
    (while (and l (sit-for 0))
      (with-demoted-errors "DFRAME TIMER ERROR: %S"
	(funcall (car l)))
      (setq l (cdr l)))))