Function: make-cmpl-prefix-entry

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

Signature

(make-cmpl-prefix-entry COMPLETION-ENTRY-LIST)

Documentation

Make a new prefix entry containing only completion-entry.

Source Code

;; Defined in /usr/src/emacs/lisp/completion.el.gz
;; Constructor

(defun make-cmpl-prefix-entry (completion-entry-list)
  "Make a new prefix entry containing only completion-entry."
  (cons completion-entry-list completion-entry-list))