# HG changeset patch # User Stefan Monnier # Date 1265832291 18000 # Node ID aae831df84d37ce323532de003e183569b876c7d # Parent 063e00f61d0f842b2f12dc27b4448451a98a5e77 (Info-bookmark-jump): Simplify. diff -r 063e00f61d0f -r aae831df84d3 lisp/ChangeLog --- a/lisp/ChangeLog Wed Feb 10 15:02:54 2010 -0500 +++ b/lisp/ChangeLog Wed Feb 10 15:04:51 2010 -0500 @@ -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 -r 063e00f61d0f -r aae831df84d3 lisp/info.el --- a/lisp/info.el Wed Feb 10 15:02:54 2010 -0500 +++ b/lisp/info.el Wed Feb 10 15:04:51 2010 -0500 @@ -4797,7 +4797,7 @@ ;; 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)