Merge branch 'maint'

This commit is contained in:
Kyle Meyer 2020-05-20 23:00:40 -04:00
commit bfc4569ae3
1 changed files with 4 additions and 2 deletions

View File

@ -4082,8 +4082,10 @@ continue from there."
(when (or
(save-excursion (goto-char p) (looking-at comment-start-skip))
(and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
(get-text-property p :org-archived)
(org-end-of-subtree t))
(or (and (get-text-property p :org-archived)
(org-end-of-subtree t))
(and (member org-archive-tag org-file-tags)
(goto-char (point-max)))))
(and org-agenda-skip-comment-trees
(get-text-property p :org-comment)
(org-end-of-subtree t))