aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-07-09 09:08:18 +0000
committerKim F. Storm2002-07-09 09:08:18 +0000
commit4e85a733532dfb6743601ddb63ae7e9ef3cad418 (patch)
tree742846007dc137a6843eb3524c4e7607c817cbb1
parentfe0a77c6f12e0a2b5cc67f95ea19173c002b64ed (diff)
downloademacs-4e85a733532dfb6743601ddb63ae7e9ef3cad418.tar.gz
emacs-4e85a733532dfb6743601ddb63ae7e9ef3cad418.zip
(ido-make-merged-file-list): Fix last change.
-rw-r--r--lisp/ido.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el
index 049ef96cb08..d4c5d4fbeec 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -2514,7 +2514,7 @@ for first matching file."
2514 (when (and (or ido-rotate-temp ido-rotate-file-list-default) 2514 (when (and (or ido-rotate-temp ido-rotate-file-list-default)
2515 (> (length text) 0)) 2515 (> (length text) 0))
2516 (let ((elt (assoc text res))) 2516 (let ((elt (assoc text res)))
2517 (unless (eq elt (car res)) 2517 (when (and elt (not (eq elt (car res))))
2518 (setq res (delq elt res)) 2518 (setq res (delq elt res))
2519 (setq res (cons elt res))))) 2519 (setq res (cons elt res)))))
2520 (message nil) 2520 (message nil)