diff options
author | Kim F. Storm <storm@cua.dk> | 2009-05-10 21:23:26 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2009-05-10 21:23:26 +0000 |
commit | 5b54c385e9a4eac853479cd9323a105c6b03d5b5 (patch) | |
tree | 3d853dcb41083e84b5c8eada1c7025d5d795f1c9 /lisp/ido.el | |
parent | 11c238b380fea770aaed2275837ce4baf9a8801a (diff) | |
download | emacs-5b54c385e9a4eac853479cd9323a105c6b03d5b5.tar.gz |
Fix last change.
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 8e998348ebf..fa85cf1c6ed 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -770,7 +770,7 @@ Obsolete. Set 3rd element of `ido-decorations' instead." (defcustom ido-decorations '( "{" "}" " | " " | ..." "[" "]" " [No match]" " [Matched]" " [Not readable]" " [Too big]" " [Confirm]") "List of strings used by ido to display the alternatives in the minibuffer. -There are 10 elements in this list: +There are 11 elements in this list: 1st and 2nd elements are used as brackets around the prospect list, 3rd element is the separator between prospects (ignored if `ido-separator' is set), 4th element is the string inserted at the end of a truncated list of prospects, @@ -4444,7 +4444,7 @@ For details of keybindings, see `ido-find-file'." (cond ((null comps) (cond (ido-show-confirm-message - (or (nth 11 ido-decorations) " [Confirm]")) + (or (nth 10 ido-decorations) " [Confirm]")) (ido-directory-nonreadable (or (nth 8 ido-decorations) " [Not readable]")) (ido-directory-too-big |