diff options
| author | Eli Zaretskii | 2005-08-27 12:16:21 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-08-27 12:16:21 +0000 |
| commit | b0c9a334c2f0eb881eff47f590997e746cc3bdb3 (patch) | |
| tree | 8489e96c17448d9976fa71c0fa0cc39dc93d605b | |
| parent | 3bab4a46de08987d0c07c30f20513b2fdd573d64 (diff) | |
| download | emacs-b0c9a334c2f0eb881eff47f590997e746cc3bdb3.tar.gz emacs-b0c9a334c2f0eb881eff47f590997e746cc3bdb3.zip | |
(eshell-windows-shell-file): Look for command.com, not command.exe.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/eshell/esh-ext.el | 2 |
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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2005-08-26 John Wiegley <johnw@newartisans.com> | 6 | 2005-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. |
| 98 | This defaults to nil on non-Windows systems, where this variable is | 98 | This defaults to nil on non-Windows systems, where this variable is |