Mercurial > emacs
changeset 6156:3aafcde7e7c4
(telnet): Use chars in comint-delimiter-argument-list.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 02 Mar 1994 22:03:44 +0000 |
parents | 2b445a954b0b |
children | 9422e430f067 |
files | lisp/telnet.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/telnet.el Wed Mar 02 22:02:56 1994 +0000 +++ b/lisp/telnet.el Wed Mar 02 22:03:44 1994 +0000 @@ -183,7 +183,7 @@ 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))