Function: semantic--tag-attribute-similar-p
semantic--tag-attribute-similar-p is a byte-compiled function defined
in tag-ls.el.gz.
Signature
(semantic--tag-attribute-similar-p ATTR VALUE1 VALUE2 IGNORABLE-ATTRIBUTES)
Documentation
Test to see if attribute ATTR is similar for VALUE1 and VALUE2.
IGNORABLE-ATTRIBUTES is described in semantic-tag-similar-p.
This function is internal, but allows customization of semantic-tag-similar-p
for a given mode at a more granular level.
Note that :type, :name, and anything in IGNORABLE-ATTRIBUTES will not be passed to this function.
Modes that override this function can call
semantic--tag-attribute-similar-p-default to do the default equality tests if
ATTR is not special for that mode.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag-ls.el.gz
(define-overloadable-function semantic--tag-attribute-similar-p (attr value1 value2 ignorable-attributes)
"Test to see if attribute ATTR is similar for VALUE1 and VALUE2.
IGNORABLE-ATTRIBUTES is described in `semantic-tag-similar-p'.
This function is internal, but allows customization of `semantic-tag-similar-p'
for a given mode at a more granular level.
Note that :type, :name, and anything in IGNORABLE-ATTRIBUTES will
not be passed to this function.
Modes that override this function can call
`semantic--tag-attribute-similar-p-default' to do the default equality tests if
ATTR is not special for that mode.")