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 ((point-at-eol (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) point-at-eol)
(put-text-property point-at-eol (point) 'font-lock-face 'default))))