emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals-release/org 5d14e88c51 2/2: org-make-tags-matcher: Fix


From: ELPA Syncer
Subject: [elpa] externals-release/org 5d14e88c51 2/2: org-make-tags-matcher: Fix regexp
Date: Wed, 7 Dec 2022 06:57:56 -0500 (EST)

branch: externals-release/org
commit 5d14e88c5146806de01b1f6b0922962d0e6dbcbe
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>

    org-make-tags-matcher: Fix regexp
    
    * lisp/org.el (org-make-tags-matcher): Match
    <now>/<today>/<tomorrow>/<+3d>/etc time queries.  They are allowed by
    "11.3.3 Matching tags and properties" section of the manual.
    
    Fixes regression from e022a0cea.
    
    Reported-by: Carlo Tambuatco <oraclmaster@gmail.com>
    Link: https://orgmode.org/list/87bkokgtd7.fsf@kyleam.com
---
 lisp/org.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org.el b/lisp/org.el
index ab6212dacc..816c165e1d 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -11380,7 +11380,7 @@ See also `org-scan-tags'."
                             (pv (match-string 7 term))
                             (regexp (eq (string-to-char pv) ?{))
                             (strp (eq (string-to-char pv) ?\"))
-                            (timep (string-match-p "^\"[[<][0-9]+.*[]>]\"$" 
pv))
+                            (timep (string-match-p 
"^\"[[<]\\(?:[0-9]+\\|now\\|today\\|tomorrow\\|[+-][0-9]+[dmwy]\\).*[]>]\"$" 
pv))
                             (po (org-op-to-function (match-string 6 term)
                                                     (if timep 'time strp))))
                        (setq pv (if (or regexp strp) (substring pv 1 -1) pv))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]