From 05a9bc44f2d158cc355c904382f2c7b079aeee15 Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Mon, 11 Jan 2021 19:38:02 +0800 Subject: [PATCH] (fix): fix org-roam-capture--get-point (#1376) --- org-roam-capture.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-roam-capture.el b/org-roam-capture.el index c2eb653..a720d38 100644 --- a/org-roam-capture.el +++ b/org-roam-capture.el @@ -538,7 +538,7 @@ This function is used solely in Org-roam's capture templates: see (org-roam-capture--new-file)) ('ref (if-let ((ref (cdr (assoc 'ref org-roam-capture--info)))) - (pcase (org-roam--split-ref ) + (pcase (org-roam--split-ref ref) (`(,type . ,path) (or (org-roam-capture--get-ref-path type path) (org-roam-capture--new-file)))