Function: semantic-tag-bounds
semantic-tag-bounds is a byte-compiled function defined in tag.el.gz.
Signature
(semantic-tag-bounds TAG)
Documentation
Return the location (START END) of data TAG describes.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-bounds (tag)
"Return the location (START END) of data TAG describes."
(list (semantic-tag-start tag)
(semantic-tag-end tag)))