summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2025-02-13 03:56:07 +0200
committerThanos Apollo <[email protected]>2025-02-13 03:56:39 +0200
commit16142440ddb3a145bf054f2b9bc793f145fad110 (patch)
treedab505f6ea3084e27a92a95bb249df9fee5fe538
parent28108af0741857d7d7377bba0aef955c1b0a2e89 (diff)
Version bump: 0.0.50.0.5
Minor update with documentation changes + Fix typos + Clearer examples & terminology + Fix formatting for GNU ELPA
-rw-r--r--NEWS.org6
-rw-r--r--org-gnosis.el5
2 files changed, 8 insertions, 3 deletions
diff --git a/NEWS.org b/NEWS.org
index 0ad948f..6c4dcbe 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -8,6 +8,12 @@ This document contains the release notes that are included in each
tagged commit on the project's main git repository:
<https://git.thanosapollo.org/org-gnosis>.
+* 0.0.5
+Minor update with documentation changes
+ + Fix typos
+ + Clearer examples & terminology
+ + Fix formatting for GNU ELPA
+
* 0.0.4
Minor update with the following changes:
+ Adds documentation.
diff --git a/org-gnosis.el b/org-gnosis.el
index 95b5e85..c814f9e 100644
--- a/org-gnosis.el
+++ b/org-gnosis.el
@@ -5,7 +5,7 @@
;; Author: Thanos Apollo <[email protected]>
;; Keywords: extensions
;; URL: https://thanosapollo.org/projects/org-gnosis/
-;; Version: 0.0.4
+;; Version: 0.0.5
;; Package-Requires: ((emacs "27.2") (emacsql "4.0.0") (compat "29.1.4.2"))
@@ -489,9 +489,8 @@ If JOURNAL-P is non-nil, retrieve/create node as a journal entry."
(list (completing-read-multiple
"Select tags (separated by ,): "
(org-gnosis-select 'tag 'tags '1=1 t))))
- (if (org-before-first-heading-p)
+ (if (and (org-before-first-heading-p))
(mapc #'org-gnosis-insert-filetag tags)
- (org-back-to-heading)
(org-set-tags tags)))
;;;###autoload