Function: semantic-decoration-on-includes-highlight

semantic-decoration-on-includes-highlight is a function defined in mode.el.gz.

Signature

(semantic-decoration-on-includes-highlight TAG)

Documentation

Decorate TAG with semantic-decoration-on-includes style.

Highlight class members that are includes. This mode provides a nice context menu on the include statements.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
;; Closure converted to defun by helpful.
(defun semantic-decoration-on-includes-highlight
    (tag)
  "Decorate TAG with `semantic-decoration-on-includes' style.\nHighlight class members that are includes.\nThis mode provides a nice context menu on the include statements."
  (let
      ((override
	(fetch-overload 'semantic-decoration-on-includes-highlight)))
    (if override
	(funcall override tag)
      (semantic-decoration-on-includes-highlight-default tag))))