]> git.eshelyaron.com Git - emacs.git/commitdiff
Use string-match to check for dotfiles in ido
authorRobert Pluim <rpluim@gmail.com>
Mon, 28 Aug 2017 07:49:56 +0000 (09:49 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 28 Aug 2017 07:49:56 +0000 (09:49 +0200)
* lisp/ido.el (ido-make-file-list): Use string-match to check
for dotfiles instead of substring, as when using tramp
simplified syntax ido-temp-list may contain empty strings.

Copyright-paperwork-exempt: yes

lisp/ido.el

index defb744201d9e72c29c6c100031da044f7ed4e22..5ba168b105a6eed2307966dbaa0b95534f0df514 100644 (file)
@@ -3678,7 +3678,7 @@ in this list."
                    ido-temp-list)))))
     (ido-to-end  ;; move . files to end
      (delq nil (mapcar
-               (lambda (x) (if (string-equal (substring x 0 1) ".") x))
+               (lambda (x) (if (string-match "^\\." x) x))
                ido-temp-list)))
     (if (and default (member default ido-temp-list))
        (if (or ido-rotate-temp ido-rotate-file-list-default)