# HG changeset patch # User Juanma Barranquero # Date 1227263559 0 # Node ID f1062fe6487fa9739bc14c111d42c33a02138405 # Parent 389ff950d8718d814a99ed04e2f43319f1b50b51 * bookmark.el (bookmark-jump-noselect): Add obsolescence declaration and remove redundant info from docstring. diff -r 389ff950d871 -r f1062fe6487f lisp/ChangeLog --- a/lisp/ChangeLog Fri Nov 21 10:20:14 2008 +0000 +++ b/lisp/ChangeLog Fri Nov 21 10:32:39 2008 +0000 @@ -1,5 +1,8 @@ 2008-11-21 Juanma Barranquero + * bookmark.el (bookmark-jump-noselect): Add obsolescence declaration + and remove redundant info from docstring. + * isearch.el (isearch-search-string): Doc fix. (search-exit-option, search-slow-window-lines, search-slow-speed) (search-upper-case, search-nonincremental-instead) diff -r 389ff950d871 -r f1062fe6487f lisp/bookmark.el --- a/lisp/bookmark.el Fri Nov 21 10:20:14 2008 +0000 +++ b/lisp/bookmark.el Fri Nov 21 10:32:39 2008 +0000 @@ -750,7 +750,7 @@ nil nil default)))) (and (string-equal str "") (setq str default)) (bookmark-store str (cdr record) parg) - + ;; Ask for an annotation buffer for this bookmark (if bookmark-use-annotations (bookmark-edit-annotation str) @@ -947,7 +947,7 @@ ;; if there is an annotation for this bookmark, ;; show it in a buffer. (bookmark-show-annotation bookmark))) - + ;;;###autoload (defun bookmark-jump (bookmark) @@ -1009,11 +1009,13 @@ 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." +compatibility only." (save-excursion (bookmark-handle-bookmark bookmark) (cons (current-buffer) (point)))) +(make-obsolete 'bookmark-jump-noselect 'bookmark-handle-bookmark "23.1") + (defun bookmark-handle-bookmark (bookmark) "Call BOOKMARK's handler or `bookmark-default-handler' if it has none. Changes current buffer and point and returns nil, or signals a `file-error'.