Function: term-send-region
term-send-region is a byte-compiled function defined in term.el.gz.
Signature
(term-send-region PROC START END)
Documentation
Send to PROC the region delimited by START and END.
This is a replacement for process-send-region that tries to keep
your process from hanging on long inputs. See term-send-string.
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-send-region (proc start end)
"Send to PROC the region delimited by START and END.
This is a replacement for `process-send-region' that tries to keep
your process from hanging on long inputs. See `term-send-string'."
(term-send-string proc (buffer-substring start end)))