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