Function: thumbs-previous-image

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

Signature

(thumbs-previous-image)

Documentation

Show the previous image.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/thumbs.el.gz
(defun thumbs-previous-image ()
  "Show the previous image."
  (interactive)
  (let* ((i (- thumbs-image-num 1))
	 (number (length (thumbs-file-alist))))
    (if (= i 0) (setq i (1- number)))
    (thumbs-show-image-num i)))