Function: tpu-next-history-element
tpu-next-history-element is an interactive and byte-compiled function
defined in tpu-edt.el.gz.
Signature
(tpu-next-history-element N)
Documentation
Insert the next element of the minibuffer history into the minibuffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
;;;
;;; Emacs version 19 minibuffer history support
;;;
(defun tpu-next-history-element (n)
"Insert the next element of the minibuffer history into the minibuffer."
(interactive "p")
(next-history-element n)
(goto-char (point-max)))