diff --git a/org-ql.el b/org-ql.el index 02d51dc..3af980e 100644 --- a/org-ql.el +++ b/org-ql.el @@ -157,7 +157,7 @@ This list should not contain any duplicates.")) (defvar org-ql-regexp-part-ts-date (rx (repeat 4 digit) "-" (repeat 2 digit) "-" (repeat 2 digit) ;; Day of week - (optional " " (1+ alpha))) + (optional " " (1+ alpha) (optional "."))) "Matches the inner, date part of an Org timestamp, both active and inactive. Also matches optional day-of-week. Used to build other timestamp regexps.")