Fix completion when completion-auto-select is set
* lisp/minibuffer.el (completion--do-completion): Do not display "Complete, but not unique" messages when completion-auto-select is set. Fixes bug#60359.
This commit is contained in:
parent
7ccb88486e
commit
beed746f94
1 changed files with 4 additions and 1 deletions
|
@ -1474,7 +1474,10 @@ when the buffer's text is already an exact match."
|
|||
(if (and (eq this-command last-command) completion-auto-help)
|
||||
(minibuffer-completion-help beg end))
|
||||
(completion--done completion 'exact
|
||||
(unless expect-exact
|
||||
(unless (or expect-exact
|
||||
(and completion-auto-select
|
||||
(eq this-command last-command)
|
||||
completion-auto-help))
|
||||
"Complete, but not unique"))))
|
||||
|
||||
(minibuffer--bitset completed t exact))))))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue