Skip to content

Commit

Permalink
Fix: (burly-bookmark-names) Load default file when needed
Browse files Browse the repository at this point in the history
Fixes #21.  Thanks to Daniel Mendler (@minad) for reporting.
  • Loading branch information
alphapapa committed Aug 31, 2023
1 parent 9261a28 commit ed65892
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ Burly supports Emacs's ~tab-bar-mode~ with ~burly-tabs-mode~. When active, Burl
+ Buffers that can't be restored by name no longer cause an error which aborts restoration of the rest of the bookmark's buffers.
+ Added workaround for regression in Emacs 28 regarding bookmarks for ~help-mode~ buffers. (See [[https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56643][Emacs bug 56643]].)
+ Removed unadvisable local rebinding of ~alist-get~ in function ~burly-follow-url-org-mode~. An innocent change in Org 9.6 was broken by this, which then broke this when called through Burly. (With thanks to [[https://github.com/yantar92][Ihor Radchenko]] for debugging.)
+ Load default bookmark file when needed. ([[https://github.com/alphapapa/burly.el/issues/21][#21]]. Thanks to [[https://github.com/minad][Daniel Mendler]] for reporting.)

** 0.2

Expand Down
1 change: 1 addition & 0 deletions burly.el
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ URLOBJ should be a URL object as returned by

(defun burly-bookmark-names ()
"Return list of all Burly bookmark names."
(bookmark-maybe-load-default-file)
(cl-loop for bookmark in bookmark-alist
for (_name . params) = bookmark
when (equal #'burly-bookmark-handler (alist-get 'handler params))
Expand Down
13 changes: 8 additions & 5 deletions burly.info
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,9 @@ File: README.info, Node: 03-pre, Next: 02, Up: Changelog
broken by this, which then broke this when called through Burly.
(With thanks to Ihor Radchenko (https://github.com/yantar92) for
debugging.)
• Load default bookmark file when needed. (#21
(https://github.com/alphapapa/burly.el/issues/21). Thanks to
Daniel Mendler (https://github.com/minad) for reporting.)


File: README.info, Node: 02, Next: 01, Prev: 03-pre, Up: Changelog
Expand Down Expand Up @@ -316,11 +319,11 @@ Node: Tab bar4998
Node: Tips5487
Node: Changelog5682
Node: 03-pre5841
Node: 026956
Node: 018377
Node: Development8471
Node: Credits8642
Node: License9002
Node: 027139
Node: 018560
Node: Development8654
Node: Credits8825
Node: License9185

End Tag Table

Expand Down

0 comments on commit ed65892

Please sign in to comment.