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)
(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")))))