mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-06-14 12:21:20 +00:00
Readability fix
This commit is contained in:
parent
ec9c506cc5
commit
696a2feeab
1 changed files with 2 additions and 2 deletions
|
|
@ -57,8 +57,8 @@
|
|||
(deadline :from ,start-str :to ,end-str)
|
||||
(and (property "DELAYED")
|
||||
(when-let (d (org-entry-get (point) "DELAYED"))
|
||||
(and (org-time> d (org-matcher-time ,start-str))
|
||||
(org-time< d (org-matcher-time ,end-str)))) )))
|
||||
(and (org-time<= (org-matcher-time ,start-str) d)
|
||||
(org-time<= d (org-matcher-time ,end-str)))) )))
|
||||
:order-by '(date priority todo)))
|
||||
(aug-results (mapcan #'mocfw/split-element-into-3
|
||||
results))
|
||||
|
|
|
|||
Loading…
Reference in a new issue