From: Richard M. Stallman Date: Fri, 24 Dec 1993 03:07:30 +0000 (+0000) Subject: (telnet): Use comint-canonicalize-args. X-Git-Tag: emacs-19.34~10525 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=202af1a239aee4af7ac251b2092496184edbcc4c;p=emacs.git (telnet): Use comint-canonicalize-args. --- diff --git a/lisp/telnet.el b/lisp/telnet.el index 871e1f18213..752883533e3 100644 --- a/lisp/telnet.el +++ b/lisp/telnet.el @@ -183,6 +183,7 @@ rejecting one login and prompting for the again for a username and password.") Communication with HOST is recorded in a buffer *HOST-telnet*. Normally input is edited in Emacs and sent a line at a time." (interactive "sOpen telnet connection to host: ") + (setq host (comint-canonicalize-args host)) (let* ((name (concat host "-telnet" )) (buffer (get-buffer (concat "*" name "*")))) (if (and buffer (get-buffer-process buffer))