Function: image-dired-scroll

image-dired-scroll is a byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-scroll &optional DOWN)

Documentation

Scroll in the thumbnail buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-scroll (&optional down)
  "Scroll in the thumbnail buffer."
  (let ((goal-column (current-column)))
    (if down (scroll-down) (scroll-up))
    (move-to-column goal-column)
    (image-dired--update-after-move down)))