aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2005-08-27 12:16:21 +0000
committerEli Zaretskii2005-08-27 12:16:21 +0000
commitb0c9a334c2f0eb881eff47f590997e746cc3bdb3 (patch)
tree8489e96c17448d9976fa71c0fa0cc39dc93d605b
parent3bab4a46de08987d0c07c30f20513b2fdd573d64 (diff)
downloademacs-b0c9a334c2f0eb881eff47f590997e746cc3bdb3.tar.gz
emacs-b0c9a334c2f0eb881eff47f590997e746cc3bdb3.zip
(eshell-windows-shell-file): Look for command.com, not command.exe.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/eshell/esh-ext.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 659a96305ae..d4691830960 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-08-27 Eli Zaretskii <eliz@gnu.org>
2
3 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
4 command.com, not command.exe.
5
12005-08-26 John Wiegley <johnw@newartisans.com> 62005-08-26 John Wiegley <johnw@newartisans.com>
2 7
3 * eshell/esh-cmd.el (eshell-rewrite-named-command): Changed the 8 * 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
92 (if (string-match "\\(\\`cmdproxy\\|sh\\)\\.\\(com\\|exe\\)" 92 (if (string-match "\\(\\`cmdproxy\\|sh\\)\\.\\(com\\|exe\\)"
93 shell-file-name) 93 shell-file-name)
94 (or (eshell-search-path "cmd.exe") 94 (or (eshell-search-path "cmd.exe")
95 (eshell-search-path "command.exe")) 95 (eshell-search-path "command.com"))
96 shell-file-name)) 96 shell-file-name))
97 "*The name of the shell command to use for DOS/Windows batch files. 97 "*The name of the shell command to use for DOS/Windows batch files.
98This defaults to nil on non-Windows systems, where this variable is 98This defaults to nil on non-Windows systems, where this variable is