comparison lisp/eshell/em-glob.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 42689b487e23
children 6eb625bead4f
comparison
equal deleted inserted replaced
46819:acd6b7b35363 46820:543b32b4673d
74 (defcustom eshell-glob-include-dot-dot t 74 (defcustom eshell-glob-include-dot-dot t
75 "*If non-nil, glob patterns that match dots will match . and .." 75 "*If non-nil, glob patterns that match dots will match . and .."
76 :type 'boolean 76 :type 'boolean
77 :group 'eshell-glob) 77 :group 'eshell-glob)
78 78
79 (defcustom eshell-glob-case-insensitive (eshell-under-windows-p) 79 (defcustom eshell-glob-case-insensitive (or (eshell-under-windows-p)
80 (eshell-under-cygwin-p))
80 "*If non-nil, glob pattern matching will ignore case." 81 "*If non-nil, glob pattern matching will ignore case."
81 :type 'boolean 82 :type 'boolean
82 :group 'eshell-glob) 83 :group 'eshell-glob)
83 84
84 (defcustom eshell-glob-show-progress nil 85 (defcustom eshell-glob-show-progress nil