Function: semantic-tag-similar-with-subtags-p

semantic-tag-similar-with-subtags-p is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-similar-with-subtags-p TAG1 TAG2 &rest IGNORABLE-ATTRIBUTES)

Documentation

Test to see if TAG1 and TAG2 are similar.

Uses semantic-tag-similar-p but also recurses through sub-tags, such as argument lists and type members. Optional argument IGNORABLE-ATTRIBUTES is passed down to semantic-tag-similar-p.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic-tag-similar-with-subtags-p (tag1 tag2 &rest ignorable-attributes)
  "Test to see if TAG1 and TAG2 are similar.
Uses `semantic-tag-similar-p' but also recurses through sub-tags, such
as argument lists and type members.
Optional argument IGNORABLE-ATTRIBUTES is passed down to
`semantic-tag-similar-p'."
  ;; DEPRECATE THIS.
  (semantic-tag-similar-p tag1 tag2 ignorable-attributes))