From 1fc1f34df82bef6f517bf1ce5c1d9e13cf258c7d Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sun, 5 Jun 2022 12:53:57 -0400 Subject: [PATCH] ENH kinda fix the incubator itemizer --- local/lib/org-x/org-x-dag.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/local/lib/org-x/org-x-dag.el b/local/lib/org-x/org-x-dag.el index 2e1370a..61a21d2 100644 --- a/local/lib/org-x/org-x-dag.el +++ b/local/lib/org-x/org-x-dag.el @@ -3151,8 +3151,10 @@ FUTURE-LIMIT in a list." (-when-let (type (pcase it-local (`(:sp-proj :proj-complete ,_) nil) (`(:sp-task :task-complete ,_) nil) - (`(:sp-iter :iter-complete ,_) nil) - (`(:sp-subiter :si-complete ,_) nil) + (`(:sp-iter :iter-empty :empty-complete ,_) nil) + (`(:sp-iter :iter-nonempty :nonempty-complete ,_) nil) + (`(:sp-subiter :si-proj :proj-complete ,_) nil) + (`(:sp-subiter :si-task :task-complete ,_) nil) (`(:sp-proj . ,_) :proj) (`(:sp-task . ,_ ) :task) (`(:sp-iter . ,_) :iter)