CVS update by aidan packages/xemacs-packages/eshell ...
xemacs-cvs at xemacs.org
xemacs-cvs at xemacs.org
Sun May 13 13:07:19 EDT 2007
User: aidan
Date: 07/05/13 19:07:19
Modified: packages/xemacs-packages/eshell ChangeLog esh-util.el
Log:
Eshell; check for .exe on Cygwin too.
Revision Changes Path
1.28 +7 -0 XEmacs/packages/xemacs-packages/eshell/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/eshell/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -p -r1.27 -r1.28
--- ChangeLog 2005/06/27 20:20:54 1.27
+++ ChangeLog 2007/05/13 17:07:18 1.28
@@ -1,3 +1,10 @@
+2007-05-13 Aidan Kehoe <kehoea at parhasard.net>
+
+ * esh-util.el (eshell-under-windows-p):
+ This function is used to determine whether .exe should be appended
+ to executable names when searching for them; this is as true of
+ cygwin32 as it is of windows-nt and ms-dos.
+
2005-06-27 Norbert Koch <viteno at xemacs.org>
* Makefile (VERSION): XEmacs package 1.10 released.
1.4 +1 -1 XEmacs/packages/xemacs-packages/eshell/esh-util.el
Index: esh-util.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/eshell/esh-util.el,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- esh-util.el 2005/01/13 23:26:10 1.3
+++ esh-util.el 2007/05/13 17:07:18 1.4
@@ -133,7 +133,7 @@ function `string-to-number'."
(defsubst eshell-under-windows-p ()
"Return non-nil if we are running under MS-DOS/Windows."
- (memq system-type '(ms-dos windows-nt)))
+ (memq system-type '(ms-dos windows-nt cygwin32)))
(defmacro eshell-condition-case (tag form &rest handlers)
"Like `condition-case', but only if `eshell-pass-through-errors' is nil."
More information about the XEmacs-CVS
mailing list