]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-directory): Don't treat FILE as a wildcard if FILE exists as
authorEli Zaretskii <eliz@gnu.org>
Sat, 23 Jun 2007 09:45:58 +0000 (09:45 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 23 Jun 2007 09:45:58 +0000 (09:45 +0000)
a directory.

lisp/ChangeLog
lisp/ls-lisp.el

index 88a81275ce1788ffd2baf33b8aba387c60014409..60a84987a6d0478a6be3f130ee339d5e9d323194 100644 (file)
@@ -1,3 +1,8 @@
+2007-06-23  Eli Zaretskii  <eliz@gnu.org>
+
+       * ls-lisp.el (insert-directory): Don't treat FILE as a wildcard if
+       FILE exists as a directory.
+
 2007-06-22  Jay Belanger  <jay.p.belanger@gmail.com>
 
        * calc/calc.el (math-bignum-digit-length)
index 94c8004ff5e427faabc6c89b87dbc9c154413de3..5d6d68e32711274c57718636dcd9b5ac21c301cd 100644 (file)
@@ -229,7 +229,10 @@ that work are: A a c i r S s t u U X g G B C R and F partly."
        ;; `ls' don't mind, we certainly do, because it makes us think
        ;; there is no wildcard, only a directory name.
        (if (and ls-lisp-support-shell-wildcards
-                (string-match "[[?*]" file))
+                (string-match "[[?*]" file)
+                ;; Prefer an existing directory to wildcards, like
+                ;; dired-noselect does.
+                (not (file-directory-p file)))
            (progn
              (or (not (eq (aref file (1- (length file))) ?/))
                  (setq file (substring file 0 (1- (length file)))))