Function: semantic-idle-scheduler-function

semantic-idle-scheduler-function is a byte-compiled function defined in idle.el.gz.

Signature

(semantic-idle-scheduler-function)

Documentation

Function run when after semantic-idle-scheduler-idle-time.

This function will reparse the current buffer, and if successful, call additional functions registered with the timer calls.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defun semantic-idle-scheduler-function ()
  "Function run when after `semantic-idle-scheduler-idle-time'.
This function will reparse the current buffer, and if successful,
call additional functions registered with the timer calls."
  (when (zerop (recursion-depth))
    (let ((debug-on-error nil))
      (save-match-data (semantic-idle-core-handler))
      )))