Function: term-send-raw-string
term-send-raw-string is a byte-compiled function defined in
term.el.gz.
Signature
(term-send-raw-string CHARS)
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-send-raw-string (chars)
(deactivate-mark)
(let ((proc (get-buffer-process (current-buffer))))
(if (not proc)
(error "Current buffer has no process")
;; Note that (term-current-row) must be called *after*
;; (point) has been updated to (process-mark proc).
(goto-char (process-mark proc))
(when (term-pager-enabled)
(setq term-pager-count (term-current-row)))
(process-send-string proc chars))))