From 755fb23e2bdc4aa226facfb9a4f14aae64bc3e68 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 26 Jun 2020 22:17:25 +0200 Subject: [PATCH] Replace `org-get-tags-at' by 'org-get-tags' --- site-lisp/db-org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index e54a0cf..de4ccab 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -112,7 +112,7 @@ If OTHERS is true, skip all entries that do not correspond to TAG." (save-mark-and-excursion ;; remember to also consider invisible headings (org-back-to-heading t)))) - (has-tag (member tag (org-get-tags-at current-headline)))) + (has-tag (member tag (org-get-tags current-headline)))) (if (or (and others (not has-tag)) (and (not others) has-tag)) next-headline