From b0c9a334c2f0eb881eff47f590997e746cc3bdb3 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Aug 2005 12:16:21 +0000 Subject: [PATCH] (eshell-windows-shell-file): Look for command.com, not command.exe. --- lisp/ChangeLog | 5 +++++ lisp/eshell/esh-ext.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 659a96305ae..d4691830960 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-08-27 Eli Zaretskii + + * eshell/esh-ext.el (eshell-windows-shell-file): Look for + command.com, not command.exe. + 2005-08-26 John Wiegley * eshell/esh-cmd.el (eshell-rewrite-named-command): Changed the diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el index e7192399a96..0aa3f4486ad 100644 --- a/lisp/eshell/esh-ext.el +++ b/lisp/eshell/esh-ext.el @@ -92,7 +92,7 @@ since nothing else but Eshell will be able to understand (if (string-match "\\(\\`cmdproxy\\|sh\\)\\.\\(com\\|exe\\)" shell-file-name) (or (eshell-search-path "cmd.exe") - (eshell-search-path "command.exe")) + (eshell-search-path "command.com")) shell-file-name)) "*The name of the shell command to use for DOS/Windows batch files. This defaults to nil on non-Windows systems, where this variable is -- 2.39.2