aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik2006-09-20 09:24:39 +0000
committerCarsten Dominik2006-09-20 09:24:39 +0000
commit71624990b95c9039ea4a46fc6a5c470c390be2a6 (patch)
tree8d102e4639dadde8e75a2c9ad4f0c710f415e8fa
parentcd3af09da71c5ba25a210031e0a45d64ec9dc64f (diff)
downloademacs-71624990b95c9039ea4a46fc6a5c470c390be2a6.tar.gz
emacs-71624990b95c9039ea4a46fc6a5c470c390be2a6.zip
(org-scan-tags): Find end of subtrees also in hidden trees.
-rw-r--r--lisp/textmodes/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index 64fbb0542ff..30ee123388c 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -8660,7 +8660,7 @@ are included in the output."
8660 (push txt rtn)) 8660 (push txt rtn))
8661 ;; if we are to skip sublevels, jump to end of subtree 8661 ;; if we are to skip sublevels, jump to end of subtree
8662 (point) 8662 (point)
8663 (or org-tags-match-list-sublevels (org-end-of-subtree)))))) 8663 (or org-tags-match-list-sublevels (org-end-of-subtree t))))))
8664 (when (and (eq action 'sparse-tree) 8664 (when (and (eq action 'sparse-tree)
8665 (not org-sparse-tree-open-archived-trees)) 8665 (not org-sparse-tree-open-archived-trees))
8666 (org-hide-archived-subtrees (point-min) (point-max))) 8666 (org-hide-archived-subtrees (point-min) (point-max)))