From: Stefan Monnier Date: Wed, 10 Feb 2010 20:04:51 +0000 (-0500) Subject: (Info-bookmark-jump): Simplify. X-Git-Tag: emacs-pretest-23.1.93~77 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=348d1e60a63ad8d8f3ba49c54473fde6e68bba60;p=emacs.git (Info-bookmark-jump): Simplify. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2a157d9f7fb..13a04d0f66d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-02-10 Thierry Volpiatto + * info.el (Info-bookmark-jump): Simplify. + * bookmark.el (bookmark-handle-bookmark): Catch the right error. (bookmark-default-handler): Accept new bookmark field `buffer'. @@ -10,13 +12,13 @@ 2010-02-10 Michael Albinus * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and - FULL-DIRECTORY-P are nil, and FILE is absolute, expand it. This - prevents file names like "~/" being listed literally. + FULL-DIRECTORY-P are nil, and FILE is absolute, expand it. + This prevents file names like "~/" being listed literally. 2010-02-10 Dan Nicolaescu - * term/xterm.el (xterm-maybe-set-dark-background-mode): Remove - dead code. (Bug#5546) + * term/xterm.el (xterm-maybe-set-dark-background-mode): + Remove dead code. (Bug#5546) 2010-02-09 Chong Yidong diff --git a/lisp/info.el b/lisp/info.el index 4789d67e659..93001496b5c 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -4797,7 +4797,7 @@ type returned by `Info-bookmark-make-record', which see." ;; Use bookmark-default-handler to move to the appropriate location ;; within the node. (bookmark-default-handler - (list* "" `(buffer . ,buf) (bookmark-get-bookmark-record bmk))))) + `("" (buffer . ,buf) . ,(bookmark-get-bookmark-record bmk))))) (provide 'info)