Function: completion-initials-all-completions
completion-initials-all-completions is a byte-compiled function
defined in minibuffer.el.gz.
Signature
(completion-initials-all-completions STRING TABLE PRED POINT)
Source Code
;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun completion-initials-all-completions (string table pred _point)
(let ((newstr (completion-initials-expand string table pred)))
(when newstr
(completion-pcm-all-completions newstr table pred (length newstr)))))