aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-04-22 15:09:48 +0000
committerKim F. Storm2005-04-22 15:09:48 +0000
commit2a5095fba0e104ca2c2042ab0605c67e0fee97d6 (patch)
tree2cad01e33b92f12fce019009990734ea990def3b
parente271742d1f963b635958f5f1fd64da27e3f83661 (diff)
downloademacs-2a5095fba0e104ca2c2042ab0605c67e0fee97d6.tar.gz
emacs-2a5095fba0e104ca2c2042ab0605c67e0fee97d6.zip
(ido-read-internal): Fix `list' completion.
-rw-r--r--lisp/ido.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el
index 2e2aca3126e..4409c3653c9 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -1793,7 +1793,7 @@ If INITIAL is non-nil, it specifies the initial input string."
1793 (ido-name (car ido-matches)))) 1793 (ido-name (car ido-matches))))
1794 1794
1795 (cond 1795 (cond
1796 ((eq item 'buffer) 1796 ((memq item '(buffer list))
1797 (setq done t)) 1797 (setq done t))
1798 1798
1799 ((string-equal "./" ido-selected) 1799 ((string-equal "./" ido-selected)