Function: image-previous-frame

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

Signature

(image-previous-frame &optional N)

Documentation

Switch to the previous frame of a multi-frame image.

With optional argument N, switch to the Nth frame before the current one. If N is negative, switch to the Nth frame after the current one.

View in manual

Probably introduced at or before Emacs version 24.4.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-mode.el.gz
(defun image-previous-frame (&optional n)
  "Switch to the previous frame of a multi-frame image.
With optional argument N, switch to the Nth frame before the current one.
If N is negative, switch to the Nth frame after the current one."
  (interactive "p")
  (image-next-frame (- n)))