(completion--try-word-completion): Don't ignore
partial-completion if it's the only style.
This commit is contained in:
parent
e93bc1426f
commit
a231a45f50
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* minibuffer.el (completion--try-word-completion): Don't ignore
|
||||
partial-completion if it's the only style.
|
||||
|
||||
2008-11-28 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* emacs-lisp/re-builder.el (reb-auto-update): Remove redundant code.
|
||||
|
|
|
@ -625,7 +625,8 @@ If `minibuffer-completion-confirm' is `confirm-after-completion',
|
|||
(after (substring string point))
|
||||
;; Disable partial-completion for this.
|
||||
(completion-styles
|
||||
(remove 'partial-completion completion-styles))
|
||||
(or (remove 'partial-completion completion-styles)
|
||||
completion-styles))
|
||||
tem)
|
||||
(while (and exts (not (consp tem)))
|
||||
(setq tem (completion-try-completion
|
||||
|
|
Loading…
Add table
Reference in a new issue