aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorEli Zaretskii2005-08-27 12:16:21 +0000
committerEli Zaretskii2005-08-27 12:16:21 +0000
commitb0c9a334c2f0eb881eff47f590997e746cc3bdb3 (patch)
tree8489e96c17448d9976fa71c0fa0cc39dc93d605b /lisp/eshell
parent3bab4a46de08987d0c07c30f20513b2fdd573d64 (diff)
downloademacs-b0c9a334c2f0eb881eff47f590997e746cc3bdb3.tar.gz
emacs-b0c9a334c2f0eb881eff47f590997e746cc3bdb3.zip
(eshell-windows-shell-file): Look for command.com, not command.exe.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-ext.el2
1 files changed, 1 insertions, 1 deletions
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