Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2026-04-02 Mats Lidell <matsl@gnu.org>

* hsys-org.el (hsys-org-id-find-advice): Fix docstring has wrong usage
of unescaped single quotes and make first line a sentence.

2026-03-30 Mats Lidell <matsl@gnu.org>

* test/kotl-mode-tests.el (kotl-mode-split-cell): Use kotl-mode:kill-tree
Expand Down
9 changes: 5 additions & 4 deletions hsys-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,11 @@ otherwise, just match to the single tag around point."
(hsys-org-get-agenda-tags #'hywiki-tags-view))

(defun hsys-org-id-find-advice (&rest _)
"If `org-roam' is loaded and has advised `org-id-find' with the function
'org-roam-id-find' but Emacs does not have the `sqlite' module, then any
call to `org-id-find' will fail. This :before advice function fixes this
by removing the `org-roam' advice from `org-id-find'."
"Remove the `org-roam' advice from `org-id-find' if present.
If `org-roam' is loaded and has advised `org-id-find' with the function
`org-roam-id-find' but Emacs does not have the `sqlite' module, then any
call to `org-id-find' will fail. This :before advice function fixes this by
removing the `org-roam' advice from `org-id-find'."
(when (and (fboundp 'org-roam-id-find)
(not (hypb:sqlite-p))
(hypb:advised-p 'org-id-find 'org-roam-id-find))
Expand Down