diff options
| author | Karl Heuer | 1995-01-18 19:47:52 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-18 19:47:52 +0000 |
| commit | 05aebd817d0f1415b7c3e924ad62b6cc04513636 (patch) | |
| tree | 302f96d6aed79c7ca48e8893cf922000767a892e | |
| parent | 148685852b81bcf67b54b4f01c96f8184fe8b1d0 (diff) | |
| download | emacs-05aebd817d0f1415b7c3e924ad62b6cc04513636.tar.gz emacs-05aebd817d0f1415b7c3e924ad62b6cc04513636.zip | |
(remote-compile): Use new global remote-shell-program.
| -rw-r--r-- | lisp/rcompile.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/rcompile.el b/lisp/rcompile.el index f4087707dab..b141995f69a 100644 --- a/lisp/rcompile.el +++ b/lisp/rcompile.el | |||
| @@ -69,10 +69,6 @@ | |||
| 69 | 69 | ||
| 70 | ;;;; user defined variables | 70 | ;;;; user defined variables |
| 71 | 71 | ||
| 72 | (defvar remote-compile-rsh-command | ||
| 73 | (if (eq system-type 'usg-unix-v) "remsh" "rsh") | ||
| 74 | "*Name of remote shell command: `rsh' for BSD or `remsh' for SYSV.") | ||
| 75 | |||
| 76 | (defvar remote-compile-host nil | 72 | (defvar remote-compile-host nil |
| 77 | "*Host for remote compilations.") | 73 | "*Host for remote compilations.") |
| 78 | 74 | ||
| @@ -146,7 +142,7 @@ See \\[compile]." | |||
| 146 | (ange-ftp-ftp-name default-directory))) | 142 | (ange-ftp-ftp-name default-directory))) |
| 147 | (compile-command | 143 | (compile-command |
| 148 | (format "%s %s -l %s \"(%scd %s; %s)\"" | 144 | (format "%s %s -l %s \"(%scd %s; %s)\"" |
| 149 | remote-compile-rsh-command | 145 | remote-shell-program |
| 150 | host | 146 | host |
| 151 | remote-compile-user | 147 | remote-compile-user |
| 152 | (if remote-compile-run-before | 148 | (if remote-compile-run-before |