; (completion-basic-all-completions): Fix recent change

* lisp/minibuffer.el (completion-basic-all-completions): Don't
omit base size.

https://lists.gnu.org/archive/html/emacs-devel/2024-06/msg00235.html
This commit is contained in:
Eshel Yaron 2024-06-13 16:43:41 +02:00
parent 39e3c30b51
commit 56537ab022
No known key found for this signature in database
GPG key ID: EF3EE9CA35D78618

View file

@ -3816,7 +3816,9 @@ Return the new suffix."
'point
(substring afterpoint 0 (cdr bounds)))))
(all (completion-pcm--all-completions prefix pattern table pred)))
(completion-pcm--hilit-commonality pattern all)))
(when all
(nconc (completion-pcm--hilit-commonality pattern all)
(car bounds)))))
;;; Partial-completion-mode style completion.