summaryrefslogtreecommitdiff
path: root/lisp/telnet.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-09-18 18:16:20 +0000
committerRichard M. Stallman <rms@gnu.org>1994-09-18 18:16:20 +0000
commit0ce46113b3597965c334cd2c01cb585bfd013527 (patch)
tree9f5cf06056e9fc0ce16cad475f28ebc2c9f2600c /lisp/telnet.el
parentd9ac20912f58585415e848dd31b3770a321c6b07 (diff)
downloademacs-0ce46113b3597965c334cd2c01cb585bfd013527.tar.gz
(telnet): Use name *telnet-HOST*, not *HOST-telnet*.
Diffstat (limited to 'lisp/telnet.el')
-rw-r--r--lisp/telnet.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/telnet.el b/lisp/telnet.el
index 6697667ed18..28884e11cd4 100644
--- a/lisp/telnet.el
+++ b/lisp/telnet.el
@@ -182,11 +182,11 @@ rejecting one login and prompting again for a username and password.")
;;;###autoload
(defun telnet (host)
"Open a network login connection to host named HOST (a string).
-Communication with HOST is recorded in a buffer *HOST-telnet*.
+Communication with HOST is recorded in a buffer `*telnet-HOST*'.
Normally input is edited in Emacs and sent a line at a time."
(interactive "sOpen telnet connection to host: ")
(let* ((comint-delimiter-argument-list '(?\ ?\t))
- (name (concat (comint-arguments host 0 nil) "-telnet" ))
+ (name (concat "telnet-" (comint-arguments host 0 nil) ))
(buffer (get-buffer (concat "*" name "*"))))
(if (and buffer (get-buffer-process buffer))
(switch-to-buffer (concat "*" name "*"))