diff options
author | Kim F. Storm <storm@cua.dk> | 2005-04-22 15:09:48 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-04-22 15:09:48 +0000 |
commit | 2a5095fba0e104ca2c2042ab0605c67e0fee97d6 (patch) | |
tree | 2cad01e33b92f12fce019009990734ea990def3b /lisp/ido.el | |
parent | e271742d1f963b635958f5f1fd64da27e3f83661 (diff) | |
download | emacs-2a5095fba0e104ca2c2042ab0605c67e0fee97d6.tar.gz emacs-2a5095fba0e104ca2c2042ab0605c67e0fee97d6.tar.bz2 emacs-2a5095fba0e104ca2c2042ab0605c67e0fee97d6.zip |
(ido-read-internal): Fix `list' completion.
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 2 |
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." (ido-name (car ido-matches)))) (cond - ((eq item 'buffer) + ((memq item '(buffer list)) (setq done t)) ((string-equal "./" ido-selected) |