summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2019-02-21 15:33:48 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2019-02-21 15:33:48 +0100
commit02eea8b9446c7da30c749617add00a5b446f7a08 (patch)
tree0e622277bf419412218265216a9ec0856d32e415
parent1067d6c5ff67b8cfc9b147fb0494ff20cc5dc4b3 (diff)
parent29fe5a7d7f24d131567e87672c832d4cae1cb799 (diff)
downloadorg-mode-02eea8b9446c7da30c749617add00a5b446f7a08.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/ox-icalendar.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox-icalendar.el b/lisp/ox-icalendar.el
index 3d6d0b2..afa16e0 100644
--- a/lisp/ox-icalendar.el
+++ b/lisp/ox-icalendar.el
@@ -317,7 +317,7 @@ A headline is blocked when either
done first or is a child of a blocked grandparent entry."
(or
;; Check if any child is not done.
- (org-element-map headline 'headline
+ (org-element-map (org-element-contents headline) 'headline
(lambda (hl) (eq (org-element-property :todo-type hl) 'todo))
info 'first-match)
;; Check :ORDERED: node property.