Function: semantic-format-tag-canonical-name-c-mode
semantic-format-tag-canonical-name-c-mode is a byte-compiled function
defined in c.el.gz.
Signature
(semantic-format-tag-canonical-name-c-mode TAG &optional PARENT COLOR)
Documentation
Create a canonical name for TAG.
PARENT specifies a parent class.
COLOR indicates that the text should be type colorized.
Enhances the base class to search for the entire parent
tree to make the name accurate.
Override semantic-format-tag-canonical-name in c-mode buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/c.el.gz
(define-mode-local-override semantic-format-tag-canonical-name
c-mode (tag &optional parent color)
"Create a canonical name for TAG.
PARENT specifies a parent class.
COLOR indicates that the text should be type colorized.
Enhances the base class to search for the entire parent
tree to make the name accurate."
(semantic-format-tag-canonical-name-default tag parent color)
)