diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 2002-07-23 02:26:56 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 2002-07-23 02:26:56 +0000 |
commit | 610a4f648645eb8c66303c64c9be909e2ca93ee8 (patch) | |
tree | 030f7247f3bccdcf2d60ce6a33f70d383e60e313 /lisp/ido.el | |
parent | 9b006cb2585bce97df68ba58f980928cd433c9bf (diff) | |
download | emacs-610a4f648645eb8c66303c64c9be909e2ca93ee8.tar.gz |
(ido-separator): Fix type.
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 5a704544ea1..7a8a8dd92ed 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -652,7 +652,7 @@ ask user whether to create buffer, or 'never to never create new buffer." (defcustom ido-separator nil "*String used by ido to separate the alternatives in the minibuffer. Obsolete. Set 3rd element of `ido-decorations' instead." - :type 'string + :type '(choice string (const nil)) :group 'ido) (defcustom ido-decorations '( "{" "}" " | " " | ..." "[" "]" " [No match]" " [Matched]") |