;; Author: Karl Fogel <kfogel@cyclic.com>
;; Maintainer: Karl Fogel <kfogel@cyclic.com>
;; Created: July, 1993
-;; Author's Update Number: 2.6.9
+;; Author's Update Number: 2.6.10
;; Keywords: bookmarks, placeholders, annotations
;;; Summary:
recently set ones come first, oldest ones come last).")
+(defvar bookmark-automatically-show-annotations t
+ "*Nil means don't show annotations when jumping to a bookmark.")
+
+
(defvar bookmark-search-size 16
"Length of the context strings recorded on either side of a bookmark.")
(and cell
(switch-to-buffer (car cell))
(goto-char (cdr cell))
- ;; if there is an annotation for this bookmark,
- ;; show it in a buffer.
- (bookmark-show-annotation str))))
+ (if bookmark-automatically-show-annotations
+ ;; if there is an annotation for this bookmark,
+ ;; show it in a buffer.
+ (bookmark-show-annotation str)))))
(defun bookmark-jump-noselect (str)