Fix: (org-ql-regexp-part-ts-repeaters) Repeaters with a "."

Fixes #225.
This commit is contained in:
Ihor Radchenko 2021-06-22 21:25:03 +08:00 committed by Adam Porter
parent 32f7e48e12
commit 1198284c7e

View file

@ -153,7 +153,7 @@ regexps.")
(defvar org-ql-regexp-part-ts-repeaters (defvar org-ql-regexp-part-ts-repeaters
;; Repeaters (not sure if the colon is necessary, but it's in the org.el one) ;; Repeaters (not sure if the colon is necessary, but it's in the org.el one)
(rx (repeat 1 2 (seq " " (repeat 1 2 (any "-+:")) (1+ digit) (any "hdwmy")))) (rx (repeat 1 2 (seq " " (repeat 1 2 (any "-+:.")) (1+ digit) (any "hdwmy"))))
"Matches the repeater part of an Org timestamp. "Matches the repeater part of an Org timestamp.
Includes leading space character.") Includes leading space character.")