Function: image-dired-backward-image
image-dired-backward-image is an interactive and byte-compiled
function defined in image-dired.el.gz.
Signature
(image-dired-backward-image &optional ARG)
Documentation
Move to previous image and display properties.
Optional prefix ARG says how many images to move; default is one image.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-backward-image (&optional arg)
"Move to previous image and display properties.
Optional prefix ARG says how many images to move; default is one
image."
(interactive "p")
(let (pos (steps (or arg 1)))
(dotimes (_ steps)
(if (and (not (bobp))
(save-excursion
(backward-char)
(while (and (not (bobp))
(not (image-dired-image-at-point-p)))
(backward-char))
(setq pos (point))
(image-dired-image-at-point-p)))
(goto-char pos)
(error "At first image"))))
(when image-dired-track-movement
(image-dired-track-original-file))
(image-dired-display-thumb-properties))