From 4d245a85f6a40d3d35e663706a26e24d9e8f2ba4 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Sun, 22 Nov 2020 14:34:33 -0600 Subject: [PATCH] WIP --- org-ql.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/org-ql.el b/org-ql.el index 8887801..fdd769a 100644 --- a/org-ql.el +++ b/org-ql.el @@ -1059,7 +1059,6 @@ The following forms are accepted: COMPARATOR may be `<', `<=', `>', or `>='." :normalizers ((`(,predicate-names . ,args) ;; Arguments could be given as strings (e.g. from a non-Lisp query). - ;; FIXME: Uh... `(level ,@(--map (pcase it ((or "<" "<=" ">" ">=" "=") (intern it)) @@ -1670,7 +1669,7 @@ parseable by `parse-time-string' which may omit the time value." (ts-adjust 'day num-days) (ts-apply :hour 23 :minute 59 :second 59)))) `(deadline :to ,to)))) - ;; FIXME: Does this normalizer cause the preamble to not be used? (Adding one to the deadline-warning definition to be sure.) + ;; NOTE: Does this normalizer cause the preamble to not be used? (Adding one to the deadline-warning definition to be sure.) :preambles ((`(,predicate-names . ,_) (list :regexp org-deadline-time-regexp :query query))) :body @@ -1790,7 +1789,7 @@ the end of the entry, i.e. the position returned by `org-entry-end-position', but for certain searches it should be bound to a different positiion, e.g. for planning lines, the end of the line after the heading." - ;; TODO: Define active/inactive ones separately. + ;; MAYBE: Define active/inactive ones separately? :normalizers ((`(,(or 'ts-active 'ts-a) . ,rest) `(ts :type active ,@rest)) (`(,(or 'ts-inactive 'ts-i) . ,rest) `(ts :type inactive ,@rest))) :preambles ((`(,predicate-names . ,rest)