Function: term-simple-send
term-simple-send is a byte-compiled function defined in term.el.gz.
Signature
(term-simple-send PROC STRING)
Documentation
Default function for sending to PROC input STRING.
This just sends STRING plus a newline. To override this,
set the hook term-input-sender.
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-simple-send (proc string)
"Default function for sending to PROC input STRING.
This just sends STRING plus a newline. To override this,
set the hook `term-input-sender'."
(term-send-string proc string)
(term-send-string proc "\n"))