Function: semantic-idle-scheduler-work-function
semantic-idle-scheduler-work-function is a byte-compiled function
defined in idle.el.gz.
Signature
(semantic-idle-scheduler-work-function)
Documentation
Function run when after semantic-idle-scheduler-work-idle-time.
This routine handles difficult tasks that require a lot of parsing, such as parsing all the header files used by our active sources, or building up complex datasets.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defun semantic-idle-scheduler-work-function ()
"Function run when after `semantic-idle-scheduler-work-idle-time'.
This routine handles difficult tasks that require a lot of parsing, such as
parsing all the header files used by our active sources, or building up complex
datasets."
(when semantic-idle-scheduler-verbose-flag
(message "Long Work Idle Timer..."))
(let ((exit-type (save-match-data
(semantic-idle-work-core-handler))))
(when semantic-idle-scheduler-verbose-flag
(message "Long Work Idle Timer...%s" exit-type)))
)