Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a231a45f
Commit
a231a45f
authored
Nov 29, 2008
by
Stefan Monnier
Browse files
(completion--try-word-completion): Don't ignore
partial-completion if it's the only style.
parent
e93bc142
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/minibuffer.el
lisp/minibuffer.el
+2
-1
No files found.
lisp/ChangeLog
View file @
a231a45f
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.
...
...
lisp/minibuffer.el
View file @
a231a45f
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment