aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-01-18 19:47:32 +0000
committerKarl Heuer <[email protected]>1995-01-18 19:47:32 +0000
commit148685852b81bcf67b54b4f01c96f8184fe8b1d0 (patch)
treea8fef1370b0d6bca50cc9680174d94606afe43bc /lisp
parent29f8388687c966269b73fcbe53f7e094910a9ece (diff)
(rsh): Use new global remote-shell-program.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/telnet.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/telnet.el b/lisp/telnet.el
index 27de4ffbb2..7e97b406c5 100644
--- a/lisp/telnet.el
+++ b/lisp/telnet.el
@@ -66,11 +66,6 @@
(defvar telnet-program "telnet"
"Program to run to open a telnet connection.")
-(defvar rsh-program
- (if (memq system-type '(hpux usg-unix-v))
- "remsh" "rsh")
- "Program to run for opening a remote shell.")
-
(defvar telnet-initial-count -50
"Initial value of `telnet-count'. Should be set to the negative of the
number of terminal writes telnet will make setting up the host connection.")
@@ -227,7 +222,7 @@ Normally input is edited in Emacs and sent a line at a time."
(interactive "sOpen rsh connection to host: ")
(require 'shell)
(let ((name (concat host "-rsh" )))
- (switch-to-buffer (make-comint name rsh-program nil host))
+ (switch-to-buffer (make-comint name remote-shell-program nil host))
(set-process-filter (get-process name) 'telnet-initial-filter)
(telnet-mode)
(setq telnet-count -16)))