From 0cf4932f77b470a04ae0347cc4d4df1821e8a73d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 2 Mar 1994 22:03:44 +0000 Subject: [PATCH] (telnet): Use chars in comint-delimiter-argument-list. --- lisp/telnet.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/telnet.el b/lisp/telnet.el index 847187640db..30ea1071f9a 100644 --- a/lisp/telnet.el +++ b/lisp/telnet.el @@ -183,7 +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: ") - (let* ((comint-delimiter-argument-list '(" " "\t")) + (let* ((comint-delimiter-argument-list '(?\ ?\t)) (name (concat (comint-arguments host 0 nil) "-telnet" )) (buffer (get-buffer (concat "*" name "*")))) (if (and buffer (get-buffer-process buffer)) -- 2.39.5