Function: term-show-output

term-show-output is an interactive and byte-compiled function defined in term.el.gz.

Signature

(term-show-output)

Documentation

Display start of this batch of interpreter output at top of window.

Sets mark to the value of point when this command is run.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-show-output ()
  "Display start of this batch of interpreter output at top of window.
Sets mark to the value of point when this command is run."
  (interactive)
  (goto-char term-last-input-end)
  (backward-char)
  (beginning-of-line)
  (set-window-start (selected-window) (point))
  (end-of-line))