Function: semantic-idle-summary-find-current-symbol-tag
semantic-idle-summary-find-current-symbol-tag is a byte-compiled
function defined in idle.el.gz.
Signature
(semantic-idle-summary-find-current-symbol-tag SYM)
Documentation
Search for a semantic tag with name SYM in database tables.
Return the tag found or nil if not found. If semanticdb is not in use, use the current buffer only.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defsubst semantic-idle-summary-find-current-symbol-tag (sym)
"Search for a semantic tag with name SYM in database tables.
Return the tag found or nil if not found.
If semanticdb is not in use, use the current buffer only."
(car (if (and (featurep 'semantic/db)
semanticdb-current-database
(require 'semantic/db-find))
(cdar (semanticdb-deep-find-tags-by-name sym))
(semantic-deep-find-tags-by-name sym (current-buffer)))))