Function: term-move-to-column
term-move-to-column is a byte-compiled function defined in term.el.gz.
Signature
(term-move-to-column COLUMN)
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-move-to-column (column)
(setq term-current-column column)
(let ((line-end-position (line-end-position)))
(move-to-column term-current-column t)
;; If move-to-column extends the current line it will use the face
;; from the last character on the line, set the face for the chars
;; to default.
(when (> (point) line-end-position)
(put-text-property line-end-position (point) 'font-lock-face 'default))))