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
f7ae6719
Commit
f7ae6719
authored
May 03, 2012
by
Stefan Monnier
Browse files
* minibuffer.el (completion--twq-all): Beware completion-ignore-case.
parent
47086495
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/minibuffer.el
lisp/minibuffer.el
+6
-3
No files found.
lisp/ChangeLog
View file @
f7ae6719
2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
* minibuffer.el (completion--twq-all): Beware completion-ignore-case.
2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
* progmodes/verilog-mode.el (font-lock-keywords):
...
...
lisp/minibuffer.el
View file @
f7ae6719
...
...
@@ -546,16 +546,19 @@ for use at QPOS."
;; which only get quoted when needed by choose-completion.
(
nconc
(
mapcar
(
lambda
(
completion
)
(
assert
(
string-prefix-p
prefix
completion
)
)
(
assert
(
string-prefix-p
prefix
completion
'ignore-case
)
t
)
(
let*
((
new
(
substring
completion
(
length
prefix
)))
(
qnew
(
funcall
qfun
new
))
(
qcompletion
(
concat
qprefix
qnew
)))
(
assert
(
equal
(
funcall
unquote
(
eq
t
(
compare-strings
(
funcall
unquote
(
concat
(
substring
string
0
qboundary
)
qcompletion
))
nil
nil
(
concat
(
substring
ustring
0
boundary
)
completion
)))
completion
)
nil
nil
'ignore-case
)))
qcompletion
))
completions
)
qboundary
))))
...
...
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