* ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold (tiny change)

Fixes: debbugs:13003
This commit is contained in:
Eyal Lotem 2013-06-12 00:25:05 -07:00 committed by Glenn Morris
parent a7f3fecc54
commit 08c73ed2a5
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,8 @@
2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
* ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
* ido.el (ido-delete-ignored-files): New function,
split from ido-make-file-list-1.
(ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)

View file

@ -3288,7 +3288,7 @@ for first matching file."
(shell-command-to-string
(concat "find "
(shell-quote-argument dir)
" -name "
(if ido-case-fold " -iname " " -name ")
(shell-quote-argument
(concat (if prefix "" "*") file "*"))
" -type " (if finddir "d" "f") " -print")))))