diff options
| author | David Shepherd <davidshepherd7@gmail.com> | 2017-03-19 15:51:25 +0000 |
|---|---|---|
| committer | David Shepherd <davidshepherd7@gmail.com> | 2017-03-19 15:51:25 +0000 |
| commit | 38f0aa4969dd2748b0999c4c7d50b6c26b815093 (patch) | |
| tree | 5d91d0122b4db6c24592f60e69d5548598d88239 | |
| parent | Use a defcustom to control the project root function (diff) | |
| download | emacs-terminal-here-38f0aa4969dd2748b0999c4c7d50b6c26b815093.tar.gz | |
Fix the Windows launch command
| -rw-r--r-- | terminal-here.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/terminal-here.el b/terminal-here.el index 26dabaf..54098f9 100644 --- a/terminal-here.el +++ b/terminal-here.el @@ -32,7 +32,7 @@ (list "open" "-a" "Terminal.app" dir)) ((memq system-type '(windows-nt ms-dos cygwin)) - (list "start" "/D" dir "cmd")) + (list "cmd.exe" "/C" "start" "cmd.exe")) ;; Probably X11! (t '("x-terminal-emulator")))) |
