From 559764aeddf7fdff77530061f237fa4a6ae6fb1e Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Tue, 13 Aug 2019 15:38:47 -0500 Subject: [PATCH] Comment: Remove task Basically done. Also, I think :from/:to/:on are ultimately better than numeric comparators like <=, because it's easier to express a range of dates. --- org-ql.el | 4 ---- 1 file changed, 4 deletions(-) diff --git a/org-ql.el b/org-ql.el index c3e370c..1b0970b 100644 --- a/org-ql.el +++ b/org-ql.el @@ -751,10 +751,6 @@ comparator, PRIORITY should be a priority string." ;;;;;; Timestamps -;; TODO: Move active/inactive into (ts) predicate, allowing the first arg to be either -;; inactive/active or the comparator. Using numeric comparators is more powerful, concise, -;; and language-independent than using from/to. Alternatively, add :before/:after, but I -;; think the comparators are better. Also consider using a macro to DRY these out. (org-ql--defpred ts (&key from to _on regexp) ;; The underscore before `on' prevents "unused lexical variable" warnings,