summaryrefslogtreecommitdiff
path: root/gnosis.el
diff options
context:
space:
mode:
Diffstat (limited to 'gnosis.el')
-rw-r--r--gnosis.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnosis.el b/gnosis.el
index e654db6..a2afc22 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -681,12 +681,12 @@ Optionally, add cusotm PROMPT."
(defun gnosis-get-tags--unique ()
"Return a list of unique strings for tags in gnosis-db."
- (cl-loop for tags in (gnosis-select 'tags 'notes)
+ (cl-loop for tags in (apply #'append (gnosis-select 'tags 'notes))
nconc tags into all-tags
finally return (delete-dups all-tags)))
(defun gnosis-select-by-tag (input-tags)
- "Return note id for every note with INPUT-TAGS."
+ "Return note ID's for every note with INPUT-TAGS."
(unless (listp input-tags)
(error "`input-tags' need to be a list"))
(cl-loop for (id tags) in (emacsql gnosis-db [:select [id tags] :from notes])