comparison lisp/eshell/em-cmpl.el @ 46820:543b32b4673d

Added checks that distinguish between cygwin and windows in some places.
author John Wiegley <johnw@newartisans.com>
date Mon, 05 Aug 2002 20:09:16 +0000
parents 2d19e70b4385
children 6eb625bead4f
comparison
equal deleted inserted replaced
46819:acd6b7b35363 46820:543b32b4673d
140 (documentation-property 'pcomplete-dir-ignore 140 (documentation-property 'pcomplete-dir-ignore
141 'variable-documentation) 141 'variable-documentation)
142 :type (get 'pcomplete-dir-ignore 'custom-type) 142 :type (get 'pcomplete-dir-ignore 'custom-type)
143 :group 'eshell-cmpl) 143 :group 'eshell-cmpl)
144 144
145 (defcustom eshell-cmpl-ignore-case (eshell-under-windows-p) 145 (defcustom eshell-cmpl-ignore-case (or (eshell-under-windows-p)
146 (eshell-under-cygwin-p))
146 (documentation-property 'pcomplete-ignore-case 147 (documentation-property 'pcomplete-ignore-case
147 'variable-documentation) 148 'variable-documentation)
148 :type (get 'pcomplete-ignore-case 'custom-type) 149 :type (get 'pcomplete-ignore-case 'custom-type)
149 :group 'eshell-cmpl) 150 :group 'eshell-cmpl)
150 151