From 202af1a239aee4af7ac251b2092496184edbcc4c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 24 Dec 1993 03:07:30 +0000 Subject: [PATCH] (telnet): Use comint-canonicalize-args. --- lisp/telnet.el | 1 + 1 file changed, 1 insertion(+) 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)) -- 2.39.5