Function: completion-initials-try-completion

completion-initials-try-completion is a byte-compiled function defined in minibuffer.el.gz.

Signature

(completion-initials-try-completion STRING TABLE PRED POINT)

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun completion-initials-try-completion (string table pred _point)
  (let ((newstr (completion-initials-expand string table pred)))
    (when newstr
      (completion-pcm-try-completion newstr table pred (length newstr)))))