Function: semantic--tag-similar-names-p-c-mode
semantic--tag-similar-names-p-c-mode is a byte-compiled function
defined in c.el.gz.
Signature
(semantic--tag-similar-names-p-c-mode TAG1 TAG2 BLANKOK)
Documentation
Compare the names of TAG1 and TAG2.
If BLANKOK is false, then the names must exactly match.
If BLANKOK is true, then always return t, as for C, the names don't matter
for arguments compared.
Override semantic--tag-similar-names-p in c-mode buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/c.el.gz
(define-mode-local-override semantic--tag-similar-names-p c-mode (tag1 tag2 blankok)
"Compare the names of TAG1 and TAG2.
If BLANKOK is false, then the names must exactly match.
If BLANKOK is true, then always return t, as for C, the names don't matter
for arguments compared."
(if blankok t (semantic--tag-similar-names-p-default tag1 tag2 nil)))