emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r112942: * ido.el (ido-wide-find-dirs-or-files): Res


From: Glenn Morris
Subject: [Emacs-diffs] trunk r112942: * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold (tiny change)
Date: Wed, 12 Jun 2013 07:25:45 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112942
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/13003
author: Eyal Lotem <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2013-06-12 00:25:05 -0700
message:
  * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold (tiny change)
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/ido.el                    ido.el-20091113204419-o5vbwnq5f7feedwu-2430
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-06-12 07:22:20 +0000
+++ b/lisp/ChangeLog    2013-06-12 07:25:05 +0000
@@ -4,6 +4,8 @@
 
 2013-06-12  Eyal Lotem  <address@hidden>  (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)

=== modified file 'lisp/ido.el'
--- a/lisp/ido.el       2013-06-12 07:22:20 +0000
+++ b/lisp/ido.el       2013-06-12 07:25:05 +0000
@@ -3288,7 +3288,7 @@
            (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")))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]