; (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:
parent
39e3c30b51
commit
56537ab022
1 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue