Function: thumbs-redraw-buffer

thumbs-redraw-buffer is a byte-compiled function defined in thumbs.el.gz.

Signature

(thumbs-redraw-buffer)

Documentation

Redraw the current thumbs buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/thumbs.el.gz
(defun thumbs-redraw-buffer ()
  "Redraw the current thumbs buffer."
  (let ((p (point))
	(inhibit-read-only t)
	(files (thumbs-file-list)))
    (erase-buffer)
    (thumbs-do-thumbs-insertion files)
    (goto-char p)))