Function: image-dired-bookmark-jump
image-dired-bookmark-jump is an autoloaded and byte-compiled function
defined in image-dired.el.gz.
Signature
(image-dired-bookmark-jump BOOKMARK)
Documentation
Default bookmark handler for Image-Dired buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
;;;###autoload
(defun image-dired-bookmark-jump (bookmark)
"Default bookmark handler for Image-Dired buffers."
;; User already cached thumbnails, so disable any checking.
(let ((image-dired-show-all-from-dir-max-files nil))
(image-dired (bookmark-prop-get bookmark 'location))
;; TODO: Go to the bookmarked file, if it exists.
;; (bookmark-prop-get bookmark 'image-dired-file)
(goto-char (point-min))))