Function: semantic-complete-inline-force-display
semantic-complete-inline-force-display is a byte-compiled function
defined in complete.el.gz.
Signature
(semantic-complete-inline-force-display)
Documentation
Force the display of whatever the current completions are.
DO NOT CALL THIS IF THE INLINE COMPLETION ENGINE IS NOT ACTIVE.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(defun semantic-complete-inline-force-display ()
"Force the display of whatever the current completions are.
DO NOT CALL THIS IF THE INLINE COMPLETION ENGINE IS NOT ACTIVE."
(condition-case e
(save-excursion
(let ((collector semantic-completion-collector-engine)
(displayer semantic-completion-display-engine)
(contents (semantic-completion-text)))
(when collector
(semantic-collector-calculate-completions
collector contents nil)
(semantic-displayer-set-completions
displayer
(semantic-collector-all-completions collector contents)
contents)
;; Ask the displayer to display them.
(semantic-displayer-show-request displayer))
))
(error (message "Bug Showing Completions: %S" e))))