Function: image-previous-line

image-previous-line is an interactive and byte-compiled function defined in image-mode.el.gz.

Signature

(image-previous-line &optional N)

Documentation

Scroll image in current window downward by N lines.

Stop if the top edge of the image is reached.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-mode.el.gz
(defun image-previous-line (&optional n)
  "Scroll image in current window downward by N lines.
Stop if the top edge of the image is reached."
  (interactive "p" image-mode)
  (image-next-line (- n)))