Function: semantic-complete-read-tag-local-members
semantic-complete-read-tag-local-members is a byte-compiled function
defined in complete.el.gz.
Signature
(semantic-complete-read-tag-local-members PROMPT &optional DEFAULT-TAG INITIAL-INPUT HISTORY)
Documentation
Ask for a tag by name from the local type members.
Available tags are from the current scope. Completion options are presented in a traditional way, with highlighting to resolve same-name collisions. PROMPT is a string to prompt with. DEFAULT-TAG is a semantic tag or string to use as the default value. If INITIAL-INPUT is non-nil, insert it in the minibuffer initially. HISTORY is a symbol representing a variable to store the history in.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(defun semantic-complete-read-tag-local-members (prompt &optional
default-tag
initial-input
history)
"Ask for a tag by name from the local type members.
Available tags are from the current scope.
Completion options are presented in a traditional way, with highlighting
to resolve same-name collisions.
PROMPT is a string to prompt with.
DEFAULT-TAG is a semantic tag or string to use as the default value.
If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
HISTORY is a symbol representing a variable to store the history in."
(semantic-complete-read-tag-engine
(semantic-collector-local-members :buffer (current-buffer))
(semantic-displayer-traditional-with-focus-highlight)
;;(semantic-displayer-tooltip)
prompt
default-tag
initial-input
history)
)