Function: semantic-collector-current-exact-match

semantic-collector-current-exact-match is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-collector-current-exact-match ARG &rest ARGS)

Implementations

((obj semantic-collector-abstract)) in `semantic/complete.el'.

Return the active valid MATCH from the semantic collector. For now, just return the first element from our list of available matches. For semanticdb based results, make sure the file is loaded into a buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(cl-defmethod semantic-collector-current-exact-match ((obj semantic-collector-abstract))
  "Return the active valid MATCH from the semantic collector.
For now, just return the first element from our list of available
matches.  For semanticdb based results, make sure the file is loaded
into a buffer."
  (when (slot-boundp obj 'current-exact-match)
    (oref obj current-exact-match)))