Function: previous-complete-history-element
previous-complete-history-element is an interactive and byte-compiled
function defined in simple.el.gz.
Signature
(previous-complete-history-element N)
Documentation
Get previous history element that completes the minibuffer before the point.
The contents of the minibuffer after the point are deleted and replaced by the new completion.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun previous-complete-history-element (n)
"\
Get previous history element that completes the minibuffer before the point.
The contents of the minibuffer after the point are deleted and replaced
by the new completion."
(interactive "p")
(next-complete-history-element (- n)))