Function: thumbs-backward-char

thumbs-backward-char is an interactive and byte-compiled function defined in thumbs.el.gz.

Signature

(thumbs-backward-char)

Documentation

Move backward one image.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/thumbs.el.gz
(defun thumbs-backward-char ()
  "Move backward one image."
  (interactive)
  (forward-char -1)
  (while (and (not (bobp)) (not (thumbs-current-image)))
    (forward-char -1))
  (thumbs-show-name))