summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Wahl <marcowahlsoft@gmail.com>2019-12-03 11:42:54 +0100
committerMarco Wahl <marcowahlsoft@gmail.com>2019-12-03 11:42:54 +0100
commit804e6af51ca36745bb23551826ed11c6b702aa9e (patch)
tree798075fcc18d6951d6aba4af8caa840f85b6cf98
parentf2d03cb6b420e865427c3ab8a0af1847e6d09fd5 (diff)
downloadorg-mode-804e6af51ca36745bb23551826ed11c6b702aa9e.tar.gz
agenda: Fix filter for day/week agenda
* lisp/org-agenda.el (org-agenda-filter-apply): Use the org-hd-marker to identify headlines instead of org-marker.
-rw-r--r--lisp/org-agenda.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index b14d6d6..5135aed 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -7731,7 +7731,7 @@ tags in the FILTER if any of the tags in FILTER are grouptags."
(save-excursion
(goto-char (point-min))
(while (not (eobp))
- (if (org-get-at-bol 'org-marker)
+ (if (org-get-at-bol 'org-hd-marker)
(progn
(setq tags (org-get-at-bol 'tags)
cat (org-agenda-get-category)