Function: semantic-current-tag

semantic-current-tag is an autoloaded and byte-compiled function defined in find.el.gz.

Signature

(semantic-current-tag)

Documentation

Return the current tag in the current buffer.

If there are more than one in the same location, return the smallest tag. Return nil if there is no tag here.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/find.el.gz
;;;###autoload
(defun semantic-current-tag ()
  "Return the current tag in the current buffer.
If there are more than one in the same location, return the
smallest tag.  Return nil if there is no tag here."
  (car (nreverse (semantic-find-tag-by-overlay))))