Function: semantic-tag-end
semantic-tag-end is a byte-compiled function defined in tag.el.gz.
Signature
(semantic-tag-end TAG)
Documentation
Return the end location of TAG.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-end (tag)
"Return the end location of TAG."
(let ((o (semantic-tag-overlay tag)))
(if (overlayp o)
(overlay-end o)
(aref o 1))))