changeset 33166:61e62bc5bd7f

(comint-completion-addsuffix): Fix custom type.
author Dave Love <fx@gnu.org>
date Fri, 03 Nov 2000 11:31:34 +0000
parents 8b3f1e99c11a
children e821d3197110
files lisp/comint.el
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/comint.el	Fri Nov 03 04:38:41 2000 +0000
+++ b/lisp/comint.el	Fri Nov 03 11:31:34 2000 +0000
@@ -2334,7 +2334,11 @@
 If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where
 DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact completion.
 This mirrors the optional behavior of tcsh."
-  :type 'boolean
+  :type '(choice (const :tag "None" nil)
+		 (const :tag "add /" t)
+		 (cons :tag "Suffix pair"
+		       (string :tag "Directory suffix")
+		       (string :tag "File suffix")))
   :group 'comint-completion)
 
 (defcustom comint-completion-recexact nil