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