Function: find-cmpl-prefix-entry

find-cmpl-prefix-entry is a byte-compiled function defined in completion.el.gz.

Signature

(find-cmpl-prefix-entry PREFIX-STRING)

Documentation

Return the prefix entry for string.

Sets cmpl-db-prefix-symbol. Prefix-string must be exactly completion-prefix-min-length long and downcased. Sets up cmpl-db-prefix-symbol.

Source Code

;; Defined in /usr/src/emacs/lisp/completion.el.gz
(defun find-cmpl-prefix-entry (prefix-string)
  "Return the prefix entry for string.
Sets `cmpl-db-prefix-symbol'.
Prefix-string must be exactly `completion-prefix-min-length' long
and downcased.  Sets up `cmpl-db-prefix-symbol'."
  (and (boundp (setq cmpl-db-prefix-symbol
		     (intern prefix-string cmpl-prefix-obarray)))
       (symbol-value cmpl-db-prefix-symbol)))