Mercurial > emacs
changeset 8876:1f90adde8d6c
(telnet): Use name *telnet-HOST*, not *HOST-telnet*.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 18 Sep 1994 18:16:20 +0000 |
parents | 36c2657d03bb |
children | 1503c999456b |
files | lisp/telnet.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/telnet.el Sun Sep 18 09:09:43 1994 +0000 +++ b/lisp/telnet.el Sun Sep 18 18:16:20 1994 +0000 @@ -182,11 +182,11 @@ ;;;###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 "*"))