Function: semantic-decoration-on-includes-p

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

Signature

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

Documentation

Return non-nil to 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-p
    (tag)
  "Return non-nil to decorate TAG with `semantic-decoration-on-includes'\nstyle.\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-p)))
    (if override
	(funcall override tag)
      (semantic-decoration-on-includes-p-default tag))))