Function: term-previous-input
term-previous-input is an interactive and byte-compiled function
defined in term.el.gz.
Signature
(term-previous-input ARG)
Documentation
Cycle backwards through input history.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-previous-input (arg)
"Cycle backwards through input history."
(interactive "*p")
(term-previous-matching-input "." arg))