Function: completion-substring-all-completions
completion-substring-all-completions is a byte-compiled function
defined in minibuffer.el.gz.
Signature
(completion-substring-all-completions STRING TABLE PRED POINT)
Source Code
;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun completion-substring-all-completions (string table pred point)
(pcase-let ((`(,all ,pattern ,prefix ,_suffix ,_carbounds)
(completion-substring--all-completions
string table pred point)))
(when all
(nconc (completion-pcm--hilit-commonality pattern all)
(length prefix)))))