From aa64cc9596fce010079fb46aaee24bd1cfdaf123 Mon Sep 17 00:00:00 2001 From: Bruno Heridet Date: Tue, 2 Jul 2024 17:56:56 +0200 Subject: [PATCH] (chore): fix indent blocking ci lint execution (#2448) This mix of tabs and spaces was introduced recently in: https://github.com/org-roam/org-roam/commit/2e94f55cc58f6dce2772a6f33521eb5afcf67265 --- org-roam-node.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/org-roam-node.el b/org-roam-node.el index f5c1bd0..40f3884 100644 --- a/org-roam-node.el +++ b/org-roam-node.el @@ -264,14 +264,14 @@ Throw an error if multiple choices exist. If NOCASE is non-nil, the query is case insensitive. It is case sensitive otherwise." (let ((matches (seq-uniq (append - (org-roam-db-query (vconcat [:select [id] :from nodes - :where (= title $s1)] - (if nocase [ :collate NOCASE ])) - s) - (org-roam-db-query (vconcat [:select [node-id] :from aliases - :where (= alias $s1)] - (if nocase [ :collate NOCASE ])) - s))))) + (org-roam-db-query (vconcat [:select [id] :from nodes + :where (= title $s1)] + (if nocase [ :collate NOCASE ])) + s) + (org-roam-db-query (vconcat [:select [node-id] :from aliases + :where (= alias $s1)] + (if nocase [ :collate NOCASE ])) + s))))) (cond ((seq-empty-p matches) nil)