Function: image-next-frame
image-next-frame is an interactive and byte-compiled function defined
in image-mode.el.gz.
Signature
(image-next-frame &optional N)
Documentation
Switch to the next frame of a multi-frame image.
With optional argument N, switch to the Nth frame after the current one. If N is negative, switch to the Nth frame before the current one.
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-next-frame (&optional n)
"Switch to the next frame of a multi-frame image.
With optional argument N, switch to the Nth frame after the current one.
If N is negative, switch to the Nth frame before the current one."
(interactive "p")
(image-goto-frame n t))