Function: thumbs-file-list

thumbs-file-list is a byte-compiled function defined in thumbs.el.gz.

Signature

(thumbs-file-list)

Documentation

Make a list of file names for all images in thumb buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/thumbs.el.gz
(defun thumbs-file-list ()
  "Make a list of file names for all images in thumb buffer."
  (save-excursion
    (let (list)
      (goto-char (point-min))
      (while (not (eobp))
	(if (thumbs-current-image)
	    (push (thumbs-current-image) list))
	(forward-char 1))
      (nreverse list))))