diff 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
line wrap: on
line diff
--- a/lisp/eshell/em-glob.el	Mon Aug 05 20:08:40 2002 +0000
+++ b/lisp/eshell/em-glob.el	Mon Aug 05 20:09:16 2002 +0000
@@ -76,7 +76,8 @@
   :type 'boolean
   :group 'eshell-glob)
 
-(defcustom eshell-glob-case-insensitive (eshell-under-windows-p)
+(defcustom eshell-glob-case-insensitive (or (eshell-under-windows-p)
+					    (eshell-under-cygwin-p))
   "*If non-nil, glob pattern matching will ignore case."
   :type 'boolean
   :group 'eshell-glob)