summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnosis.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnosis.el b/gnosis.el
index c5d3da7..2d23fd9 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -557,7 +557,7 @@ Returns a list of unique tags."
(match (or match nil)))
(while (not (string= tag "q"))
(setf tag (completing-read (concat prompt (format " %s (q for quit): " tags))
- (gnosis-get-tags--unique) nil match))
+ (cons "q" (gnosis-get-tags--unique)) nil match))
(unless (or (string= tag "q") (member tag tags))
(push tag tags)))
(reverse tags)))