branch: externals/denote commit e2c77a54762d19009eca2226a2c810dceae5a40e Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Update the comment about denote--file-has-backlinks-p This is an important thing to work on. What we have now is too expensive for a feature that is small. --- denote.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/denote.el b/denote.el index 6730afd015..46acb9fa37 100644 --- a/denote.el +++ b/denote.el @@ -6062,9 +6062,9 @@ Also see `denote-get-links'." (xrefs (denote-retrieve-xref-alist-for-backlinks id))) (mapcar #'car xrefs))) -;; TODO 2024-09-04: Instead of using `denote-get-backlinks' we -;; should have a function that does not try to find all backlinks but -;; simply exits as soon as it finds one. +;; FIXME 2025-08-01: Instead of using `denote-get-backlinks' we should +;; have a function that does not try to find all backlinks but simply +;; exits as soon as it finds one. (defun denote--file-has-backlinks-p (file) "Return non-nil if FILE has backlinks." (not (zerop (length (denote-get-backlinks file)))))