summaryrefslogtreecommitdiff
path: root/lisp/telnet.el
diff options
context:
space:
mode:
authorBrian Fox <bfox@gnu.org>1993-10-05 01:57:38 +0000
committerBrian Fox <bfox@gnu.org>1993-10-05 01:57:38 +0000
commiteb1af9363bf901f972e0e68819dc03baba541a50 (patch)
tree0dde366015e52c554b40e6075c98cfee0a2e25d3 /lisp/telnet.el
parent3eedc3c27fc7ecb49f96fcd6fc79938dfbf9f0f3 (diff)
downloademacs-eb1af9363bf901f972e0e68819dc03baba541a50.tar.gz
(rsh): Add `host' to args passed to make-comint.
Diffstat (limited to 'lisp/telnet.el')
-rw-r--r--lisp/telnet.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/telnet.el b/lisp/telnet.el
index 4422c17032d..e1146a8eedf 100644
--- a/lisp/telnet.el
+++ b/lisp/telnet.el
@@ -215,7 +215,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"))
+ (switch-to-buffer (make-comint name "rsh" nil host))
(set-process-filter (get-process name) 'telnet-initial-filter)
(telnet-mode)
(setq telnet-count -16)))