branch: externals/denote commit 4d39e1453dd50b4df97b7f813484c72e14879009 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Add missing t condition from denote-link--ol-resolve-link-to-target --- denote.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/denote.el b/denote.el index 803b788e99..ddf931f158 100644 --- a/denote.el +++ b/denote.el @@ -4664,7 +4664,7 @@ With optional FULL-DATA return a list in the form of (path id query)." (list path id query)) ((and query (not (string-empty-p query))) (concat path "::" query)) - (path)))) + (t path)))) ;;;###autoload (defun denote-link-ol-follow (link)