diff options
author | John Wiegley <johnw@newartisans.com> | 2002-08-05 20:09:37 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2002-08-05 20:09:37 +0000 |
commit | a5c41f64a15a2c4f029f157f7dac6b2a87e27fbc (patch) | |
tree | fd5add8e3f55ef98931aaa9ead09bbea33da8901 /lisp/eshell/em-glob.el | |
parent | 851988cd895db893330f3a1269d6ff6f863fcec3 (diff) | |
download | emacs-a5c41f64a15a2c4f029f157f7dac6b2a87e27fbc.tar.gz |
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.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el index 9d5f8bc3adc..09c65dfd7d6 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) |