aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell/em-glob.el
diff options
context:
space:
mode:
authorJohn Wiegley <[email protected]>2002-08-05 20:09:37 +0000
committerJohn Wiegley <[email protected]>2002-08-05 20:09:37 +0000
commita5c41f64a15a2c4f029f157f7dac6b2a87e27fbc (patch)
treefd5add8e3f55ef98931aaa9ead09bbea33da8901 /lisp/eshell/em-glob.el
parent851988cd895db893330f3a1269d6ff6f863fcec3 (diff)
Added checks that distinguish between cygwin and windows in some
places.
Diffstat (limited to 'lisp/eshell/em-glob.el')
-rw-r--r--lisp/eshell/em-glob.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el
index 9d5f8bc3ad..09c65dfd7d 100644
--- a/lisp/eshell/em-glob.el
+++ b/lisp/eshell/em-glob.el
@@ -76,7 +76,8 @@ by zsh for filename generation."
: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)