From 348d1e60a63ad8d8f3ba49c54473fde6e68bba60 Mon Sep 17 00:00:00 2001
From: Stefan Monnier <monnier@iro.umontreal.ca>
Date: Wed, 10 Feb 2010 15:04:51 -0500
Subject: [PATCH] (Info-bookmark-jump): Simplify.

---
 lisp/ChangeLog | 10 ++++++----
 lisp/info.el   |  2 +-
 2 files changed, 7 insertions(+), 5 deletions(-)

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  <thierry.volpiatto@gmail.com>
 
+	* 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  <michael.albinus@gmx.de>
 
 	* 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  <dann@ics.uci.edu>
 
-	* 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  <cyd@stupidchicken.com>
 
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)
 
-- 
2.39.5