diff options
| author | Dave Love | 2000-11-03 11:31:34 +0000 |
|---|---|---|
| committer | Dave Love | 2000-11-03 11:31:34 +0000 |
| commit | 97342eb1d4ce13c9e0d561dff0507c3094bd59af (patch) | |
| tree | f401e9132376a6c1b552dcc4ae20e77e5233ab47 | |
| parent | 34befa9a5b37f2ac2150c637a9e7c88d5ddd9bb1 (diff) | |
| download | emacs-97342eb1d4ce13c9e0d561dff0507c3094bd59af.tar.gz emacs-97342eb1d4ce13c9e0d561dff0507c3094bd59af.zip | |
(comint-completion-addsuffix): Fix custom type.
| -rw-r--r-- | lisp/comint.el | 6 |
1 files changed, 5 insertions, 1 deletions
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." | |||
| 2334 | If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where | 2334 | If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where |
| 2335 | DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact completion. | 2335 | DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact completion. |
| 2336 | This mirrors the optional behavior of tcsh." | 2336 | This mirrors the optional behavior of tcsh." |
| 2337 | :type 'boolean | 2337 | :type '(choice (const :tag "None" nil) |
| 2338 | (const :tag "add /" t) | ||
| 2339 | (cons :tag "Suffix pair" | ||
| 2340 | (string :tag "Directory suffix") | ||
| 2341 | (string :tag "File suffix"))) | ||
| 2338 | :group 'comint-completion) | 2342 | :group 'comint-completion) |
| 2339 | 2343 | ||
| 2340 | (defcustom comint-completion-recexact nil | 2344 | (defcustom comint-completion-recexact nil |