Function: semantic--tag-similar-names-p

semantic--tag-similar-names-p is a byte-compiled function defined in tag-ls.el.gz.

Signature

(semantic--tag-similar-names-p 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 if either of TAG1 or TAG2 has blank names, then that is ok, and this returns true, but if they both have values, they must still match.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag-ls.el.gz
(define-overloadable-function semantic--tag-similar-names-p (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 if either of TAG1 or TAG2 has blank
names, then that is ok, and this returns true, but if they both
have values, they must still match.")