+2008-11-19 Karl Fogel <kfogel@red-bean.com>
+
+ * bookmark.el (bookmark-jump-noselect): Move the deprecation
+ notice into the doc string, following up to 2008-10-29T17:42:49Z!cyd@stupidchicken.com.
+
2008-11-19 Lute Kamstra <lute@gnu.org>
* autoinsert.el (auto-insert-alist): Don't use match data.
;; Last possibility: try VC
(if (vc-backend file) file))))
-;; This function is present for Emacs 22 compatibility only.
(defun bookmark-jump-noselect (bookmark)
"Return the location pointed to by the bookmark BOOKMARK.
-The return value has the form (BUFFER . POINT)."
+The return value has the form (BUFFER . POINT).
+
+Note: this function is deprecated and is present for Emacs 22
+compatibility only. Use `bookmark-handle-bookmark' instead."
(save-excursion
(bookmark-handle-bookmark bookmark)
(cons (current-buffer) (point))))