Function: telnet-simple-send
telnet-simple-send is a byte-compiled function defined in
telnet.el.gz.
Signature
(telnet-simple-send PROC STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/net/telnet.el.gz
;; Identical to comint-simple-send, except that it sends telnet-new-line
;; instead of "\n".
(defun telnet-simple-send (proc string)
(comint-send-string proc string)
(if comint-input-sender-no-newline
(if (not (string-equal string ""))
(process-send-eof))
(comint-send-string proc telnet-new-line)))