Function: previous-completion
previous-completion is an interactive and byte-compiled function
defined in simple.el.gz.
Signature
(previous-completion N)
Documentation
Move to the previous item in the completion list.
Probably introduced at or before Emacs version 19.29.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun previous-completion (n)
"Move to the previous item in the completion list."
(interactive "p")
(next-completion (- n)))