diff options
-rw-r--r-- | NEWS.org | 6 | ||||
-rw-r--r-- | org-gnosis.el | 5 |
2 files changed, 8 insertions, 3 deletions
@@ -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 |