diff options
author | Eyal Lotem <eyal.lotem@gmail.com> | 2013-06-12 00:25:05 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-06-12 00:25:05 -0700 |
commit | 08c73ed2a5b65c8e21fc4f77ad7cae46748b8aed (patch) | |
tree | 6392585237ee16f97b5c661ccc76ddfc8bf8c3ed /lisp/ido.el | |
parent | a7f3fecc54d229c14982c1f6ce225dda57ed1108 (diff) | |
download | emacs-08c73ed2a5b65c8e21fc4f77ad7cae46748b8aed.tar.gz |
* ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold (tiny change)
Fixes: debbugs:13003
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 56331661f24..b73094f2db3 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -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"))))) |