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