diff lisp/eshell/em-dirs.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 6303529069a9
children 6eb625bead4f
line wrap: on
line diff
--- a/lisp/eshell/em-dirs.el	Mon Aug 05 20:08:40 2002 +0000
+++ b/lisp/eshell/em-dirs.el	Mon Aug 05 20:09:16 2002 +0000
@@ -353,7 +353,8 @@
   (setq args (eshell-flatten-list args))
   (let ((path (car args))
 	(subpath (car (cdr args)))
-	(case-fold-search (eshell-under-windows-p))
+	(case-fold-search (or (eshell-under-windows-p)
+			      (eshell-under-cygwin-p)))
 	handled)
     (if (numberp path)
 	(setq path (number-to-string path)))