]> git.eshelyaron.com Git - emacs.git/commitdiff
(ido-make-merged-file-list): Fix last change.
authorKim F. Storm <storm@cua.dk>
Tue, 9 Jul 2002 09:08:18 +0000 (09:08 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 9 Jul 2002 09:08:18 +0000 (09:08 +0000)
lisp/ido.el

index 049ef96cb08baba2dfce1d3ea434edb08cb46bb3..d4c5d4fbeeca166788e78a5af2100a374c92d12b 100644 (file)
@@ -2514,7 +2514,7 @@ for first matching file."
     (when (and (or ido-rotate-temp ido-rotate-file-list-default)
               (> (length text) 0))
       (let ((elt (assoc text res)))
-       (unless (eq elt (car res))
+       (when (and elt (not (eq elt (car res))))
          (setq res (delq elt res))
          (setq res (cons elt res)))))
     (message nil)