Function: semantic--format-uml-post-colorize

semantic--format-uml-post-colorize is a byte-compiled function defined in format.el.gz.

Signature

(semantic--format-uml-post-colorize TEXT TAG PARENT)

Documentation

Add color to TEXT created from TAG and PARENT.

Adds augmentation for abstract and static entries.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/format.el.gz
(defun semantic--format-uml-post-colorize (text tag parent)
  "Add color to TEXT created from TAG and PARENT.
Adds augmentation for `abstract' and `static' entries."
  (if (semantic-tag-abstract-p tag parent)
      (setq text (semantic--format-colorize-merge-text text 'abstract)))
  (if (semantic-tag-static-p tag parent)
      (setq text (semantic--format-colorize-merge-text text 'static)))
  text
  )