# HG changeset patch # User Karl Fogel <kfogel@red-bean.com> # Date 1227081784 0 # Node ID d067d683a1bc650fc8c92301c03be46d16b9c4b3 # Parent bfbf9ff7903f3c7ee642b435173bb76cb883898e (bookmark-jump-noselect): Move the deprecation notice into the doc string, following up to revision 1.117. diff -r bfbf9ff7903f -r d067d683a1bc lisp/ChangeLog --- a/lisp/ChangeLog Wed Nov 19 05:51:30 2008 +0000 +++ b/lisp/ChangeLog Wed Nov 19 08:03:04 2008 +0000 @@ -1,3 +1,8 @@ +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 revision 1.117. + 2008-11-19 Lute Kamstra <lute@gnu.org> * autoinsert.el (auto-insert-alist): Don't use match data. diff -r bfbf9ff7903f -r d067d683a1bc lisp/bookmark.el --- a/lisp/bookmark.el Wed Nov 19 05:51:30 2008 +0000 +++ b/lisp/bookmark.el Wed Nov 19 08:03:04 2008 +0000 @@ -1004,10 +1004,12 @@ ;; 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))))