[oni-org] Disable padding of date for comparison
Comparing “3” to “03”, for example, won't ever succeed.
This commit is contained in:
parent
f965d1c768
commit
50ea147510
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||||
;; Keywords: local
|
;; Keywords: local
|
||||||
;; Version: 2023.0329.163548
|
;; Version: 2023.0403.005409
|
||||||
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-contrib org-bullets org-edna diminish all-the-icons olivetti form-feed)
|
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-contrib org-bullets org-edna diminish all-the-icons olivetti form-feed)
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -1104,7 +1104,7 @@ placed above TARGET. Otherwise it will be placed below it."
|
||||||
(progn
|
(progn
|
||||||
(dotimes (_ 31)
|
(dotimes (_ 31)
|
||||||
(org-move-subtree-down))
|
(org-move-subtree-down))
|
||||||
(unless (string= element-title (format-time-string "%d"))
|
(unless (string= element-title (format-time-string "%-d"))
|
||||||
(oni-org-dump-tickler-1)))
|
(oni-org-dump-tickler-1)))
|
||||||
(dotimes (_ 41)
|
(dotimes (_ 41)
|
||||||
(org-move-subtree-down))
|
(org-move-subtree-down))
|
||||||
|
|
Loading…
Reference in a new issue