Function: semantic-tag-start

semantic-tag-start is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-start TAG)

Documentation

Return the start location of TAG.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-start (tag)
  "Return the start location of TAG."
  (let ((o (semantic-tag-overlay tag)))
    (if (overlayp o)
        (overlay-start o)
      (aref o 0))))