From: Brian Fox Date: Tue, 5 Oct 1993 01:57:38 +0000 (+0000) Subject: (rsh): Add `host' to args passed to make-comint. X-Git-Tag: emacs-19.34~11023 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=784a2b51e74c2ee93f454fbc7bf453aba127f3b9;p=emacs.git (rsh): Add `host' to args passed to make-comint. --- 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)))