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 | 5dfc040ef643c5c3e107103453a84ba40a57941d (patch) | |
tree | e2547b5e7a0230e88288b1f40e72d35f13de7e18 /lisp/ido.el | |
parent | 44972781034b1c247b3a777ea57313fca719aca9 (diff) | |
download | emacs-5dfc040ef643c5c3e107103453a84ba40a57941d.tar.gz |
(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) |