Function: semantic-debug-idle-function

semantic-debug-idle-function is an interactive and byte-compiled function defined in idle.el.gz.

Signature

(semantic-debug-idle-function)

Documentation

Run the Semantic idle function with debugging turned on.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defun semantic-debug-idle-function ()
  "Run the Semantic idle function with debugging turned on."
  (interactive)
  (let ((debug-on-error t))
    (semantic-idle-core-handler)
    ))