Function: dired-prev-marked-file
dired-prev-marked-file is an interactive and byte-compiled function
defined in dired.el.gz.
Signature
(dired-prev-marked-file ARG &optional WRAP)
Documentation
Move to the ARGth previous marked file.
ARG is the numeric prefix argument and defaults to 1. If WRAP is non-nil, which happens interactively, wrap around to the end of the buffer and search backwards from there, if no ARGth marked file is found before this line.
Probably introduced at or before Emacs version 20.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/dired.el.gz
(defun dired-prev-marked-file (arg &optional wrap)
"Move to the ARGth previous marked file.
ARG is the numeric prefix argument and defaults to 1.
If WRAP is non-nil, which happens interactively, wrap around
to the end of the buffer and search backwards from there, if
no ARGth marked file is found before this line."
(interactive "p\np")
(dired-next-marked-file (- arg) wrap))