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
78893e05
Commit
78893e05
authored
Mar 08, 2007
by
Chong Yidong
Browse files
(Ftry_completion): Don't short circuit if completion-ignore-case is
non-nil.
parent
b033f7a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/minibuf.c
src/minibuf.c
+4
-0
No files found.
src/minibuf.c
View file @
78893e05
...
...
@@ -1483,6 +1483,10 @@ is used to further constrain the set of candidates. */)
matchcount
++
;
bestmatchsize
=
matchsize
;
if
(
matchsize
<=
SCHARS
(
string
)
/* If completion-ignore-case is non-nil, don't
short-circuit because we want to find the best
possible match *including* case differences. */
&&
!
completion_ignore_case
&&
matchcount
>
1
)
/* No need to look any further. */
break
;
...
...
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