comparison lisp/comint.el @ 33167:e821d3197110

Capital in last change.
author Dave Love <fx@gnu.org>
date Fri, 03 Nov 2000 11:38:38 +0000
parents 61e62bc5bd7f
children 0f78cc4bde5f
comparison
equal deleted inserted replaced
33166:61e62bc5bd7f 33167:e821d3197110
2333 "*If non-nil, add a `/' to completed directories, ` ' to file names. 2333 "*If non-nil, add a `/' to completed directories, ` ' to file names.
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 '(choice (const :tag "None" nil) 2337 :type '(choice (const :tag "None" nil)
2338 (const :tag "add /" t) 2338 (const :tag "Add /" t)
2339 (cons :tag "Suffix pair" 2339 (cons :tag "Suffix pair"
2340 (string :tag "Directory suffix") 2340 (string :tag "Directory suffix")
2341 (string :tag "File suffix"))) 2341 (string :tag "File suffix")))
2342 :group 'comint-completion) 2342 :group 'comint-completion)
2343 2343