From: Dave Love Date: Fri, 3 Nov 2000 11:31:34 +0000 (+0000) Subject: (comint-completion-addsuffix): Fix custom type. X-Git-Tag: emacs-pretest-21.0.90~341 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=97342eb1d4ce13c9e0d561dff0507c3094bd59af;p=emacs.git (comint-completion-addsuffix): Fix custom type. --- diff --git a/lisp/comint.el b/lisp/comint.el index b0ae6d081bb..f43387cac32 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -2334,7 +2334,11 @@ This mirrors the optional behavior of tcsh." 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