[PATCH] Fix: broken if-clause in denote-link-after-creating-with-command
Export this patch
---
denote.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/denote.el b/denote.el
index 1debafb..1e4b296 100644
--- a/denote.el
+++ b/denote.el
@@ -3169,8 +3169,8 @@ Optional ID-ONLY has the same meaning as in the command
command
(if (eq command 'denote-signature)
#'denote--link-get-description-with-signature
- #'denote--link-get-description
- id-only)))
+ #'denote--link-get-description)
+ id-only))
;;;###autoload
(defun denote-link-or-create (target &optional id-only)
--
2.42.0
Applied. Thank you!