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
commit784a2b51e74c2ee93f454fbc7bf453aba127f3b9 (patch)
tree279cd3fad180ab4c53c0d9285dcafbe09e410c04 /lisp/telnet.el
parent5ed74a224097f3e0316fd48cb1204aa04485a9b2 (diff)
downloademacs-784a2b51e74c2ee93f454fbc7bf453aba127f3b9.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)))