Function: term-insert-char

term-insert-char is a byte-compiled function defined in term.el.gz.

Signature

(term-insert-char CHAR COUNT)

Source Code

;; Defined in /usr/src/emacs/lisp/term.el.gz
;; Insert COUNT copies of CHAR in the default face.
(defun term-insert-char (char count)
  (let ((old-point (point)))
    (insert-char char count)
    (put-text-property old-point (point) 'font-lock-face 'default)))