Function: recentf-backward
recentf-backward is an interactive and byte-compiled function defined
in recentf.el.gz.
Signature
(recentf-backward ARG)
Documentation
Move the cursor to the previous widget in the current dialog.
With prefix argument ARG, move to the ARGth previous widget. If
recentf-suppress-open-file-help is non-nil, suppress help messages in
the echo area in the open recentf dialog.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-backward (arg)
"Move the cursor to the previous widget in the current dialog.
With prefix argument ARG, move to the ARGth previous widget. If
`recentf-suppress-open-file-help' is non-nil, suppress help messages in
the echo area in the open recentf dialog."
(interactive "p")
(widget-backward arg recentf-suppress-open-file-help))