From 97342eb1d4ce13c9e0d561dff0507c3094bd59af Mon Sep 17 00:00:00 2001 From: Dave Love Date: Fri, 3 Nov 2000 11:31:34 +0000 Subject: [PATCH] (comint-completion-addsuffix): Fix custom type. --- lisp/comint.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- 2.39.5