Function: semantic-tag-set-bounds
semantic-tag-set-bounds is a byte-compiled function defined in
tag.el.gz.
Signature
(semantic-tag-set-bounds TAG START END)
Documentation
In TAG, set the START and END location of data it describes.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic-tag-set-bounds (tag start end)
"In TAG, set the START and END location of data it describes."
(let ((o (semantic-tag-overlay tag)))
(if (overlayp o)
(move-overlay o start end)
(semantic--tag-set-overlay tag (vector start end)))))