]> git.eshelyaron.com Git - emacs.git/commitdiff
(telnet): Use chars in comint-delimiter-argument-list.
authorRichard M. Stallman <rms@gnu.org>
Wed, 2 Mar 1994 22:03:44 +0000 (22:03 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 2 Mar 1994 22:03:44 +0000 (22:03 +0000)
lisp/telnet.el

index 847187640dbb7062461690494c32b15f96998ccd..30ea1071f9aa356f9d4d6ea17590325c21f4c609 100644 (file)
@@ -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))