Function: semantic-foreign-tag-check
semantic-foreign-tag-check is a byte-compiled function defined in
tag.el.gz.
Signature
(semantic-foreign-tag-check TAG)
Documentation
Check that TAG is a valid foreign tag.
Signal an error if not.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-foreign-tag-check (tag)
"Check that TAG is a valid foreign tag.
Signal an error if not."
(or (semantic-foreign-tag-p tag)
(semantic-foreign-tag-invalid tag)))