branch: externals/blist
commit d0072ea8e89a93afddd6629a9e388d3c6e9dc3f8
Author: JSDurand <mmem...@gmail.com>
Commit: JSDurand <mmem...@gmail.com>

    * blist.el (blist-open): Use the name of bookmark instead.
    
    This string will be stored in the history variable.  If we use a full
    record there, it may cause problems when we later try to select
    previous bookmark selections.
---
 blist.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/blist.el b/blist.el
index c91a5b86fe..156205cd70 100644
--- a/blist.el
+++ b/blist.el
@@ -542,7 +542,8 @@ range, unless region is active."
   (cond
    ((ilist-get-index)
     (bookmark-jump
-     (nth (ilist-get-index) bookmark-alist)))
+     (bookmark-name-from-full-record
+      (nth (ilist-get-index) bookmark-alist))))
    ((user-error "No bookmark to open on this line"))))
 
 ;;;; Open in another window

Reply via email to