Function: semantic-deep-find-tags-for-completion
semantic-deep-find-tags-for-completion is a macro defined in
find.el.gz.
Signature
(semantic-deep-find-tags-for-completion PREFIX &optional TABLE)
Documentation
Find all tags whose name begins with PREFIX in TABLE.
Search in top level tags, and their components, in TABLE.
TABLE is a tag table. See semantic-flatten-tags-table.
See also semantic-find-tags-for-completion.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/find.el.gz
(defmacro semantic-deep-find-tags-for-completion (prefix &optional table)
"Find all tags whose name begins with PREFIX in TABLE.
Search in top level tags, and their components, in TABLE.
TABLE is a tag table. See `semantic-flatten-tags-table'.
See also `semantic-find-tags-for-completion'."
`(semantic-find-tags-for-completion
,prefix (semantic-flatten-tags-table ,table)))