From 90f3242e0387878355276536d34f0cd89a20412b Mon Sep 17 00:00:00 2001 From: jgart Date: Sun, 24 Sep 2023 14:02:05 -0500 Subject: [PATCH] Make it explicit that resources is initialized as nil --- zk.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zk.el b/zk.el index 93a6fb4..992f400 100644 --- a/zk.el +++ b/zk.el @@ -1079,7 +1079,7 @@ Backlinks and Links-in-Note are grouped separately." (let* ((id (zk--file-id buffer-file-name)) (backlinks (ignore-errors (zk--backlinks-list id))) (links-in-note (ignore-errors (zk--links-in-note-list))) - (resources)) + (resources nil)) (if (or backlinks links-in-note) (progn (dolist (file links-in-note)