Function: thumbs-show-more-images

thumbs-show-more-images is an interactive and byte-compiled function defined in thumbs.el.gz.

Signature

(thumbs-show-more-images &optional ARG)

Documentation

Show more than thumbs-max-image-number images, if present.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/thumbs.el.gz
(defun thumbs-show-more-images (&optional arg)
  "Show more than `thumbs-max-image-number' images, if present."
  (interactive "P")
  (or arg (setq arg 1))
  (setq thumbs-extra-images (+ thumbs-extra-images arg))
  (thumbs-dired-show))