diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-03-02 22:03:44 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-03-02 22:03:44 +0000 |
commit | 0cf4932f77b470a04ae0347cc4d4df1821e8a73d (patch) | |
tree | d272a5f54cc6a2a1af1413939c8b0206a71f8a4d /lisp/telnet.el | |
parent | 56eb10608f4b60b1d96c6e83498ea128ffa857e8 (diff) | |
download | emacs-0cf4932f77b470a04ae0347cc4d4df1821e8a73d.tar.gz |
(telnet): Use chars in comint-delimiter-argument-list.
Diffstat (limited to 'lisp/telnet.el')
-rw-r--r-- | lisp/telnet.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |