From 1198284c7eba5ff6d886ba857ad79b8970f172eb Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Tue, 22 Jun 2021 21:25:03 +0800 Subject: [PATCH] Fix: (org-ql-regexp-part-ts-repeaters) Repeaters with a "." Fixes #225. --- org-ql.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-ql.el b/org-ql.el index 671c211..e179d07 100644 --- a/org-ql.el +++ b/org-ql.el @@ -153,7 +153,7 @@ regexps.") (defvar org-ql-regexp-part-ts-repeaters ;; 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. Includes leading space character.")