Function: semantic-tag-with-position-p

semantic-tag-with-position-p is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-with-position-p TAG)

Documentation

Return non-nil if TAG has positional information.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic-tag-with-position-p (tag)
  "Return non-nil if TAG has positional information."
  (and (semantic-tag-p tag)
       (let ((o (semantic-tag-overlay tag)))
	 (or (and (overlayp o)
		  (overlay-buffer o))
             (arrayp o)))))