0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 19:37:52 +00:00

Fix alphabetic string matching operators

* org.el (org-string<): Add.
(org-op-to-function): Use it.
(org-string> etc.): Use collated comparison.

Cf. commit 551d2f1fe.
This commit is contained in:
Sebastian Reuße 2018-03-11 17:09:32 +01:00 committed by Nicolas Goaziou
parent e64ff15f67
commit 0d6ee386a1

View file

@ -14045,7 +14045,7 @@ When DOWNCASE is non-nil, expand downcased TAGS."
"Turn an operator into the appropriate function."
(setq op
(cond
((equal op "<" ) '(< string< org-time<))
((equal op "<" ) '(< org-string< org-time<))
((equal op ">" ) '(> org-string> org-time>))
((member op '("<=" "=<")) '(<= org-string<= org-time<=))
((member op '(">=" "=>")) '(>= org-string>= org-time>=))
@ -14054,9 +14054,10 @@ When DOWNCASE is non-nil, expand downcased TAGS."
(nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
(defun org<> (a b) (not (= a b)))
(defun org-string<= (a b) (or (string= a b) (string< a b)))
(defun org-string>= (a b) (not (string< a b)))
(defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
(defun org-string< (a b) (org-string-collate-lessp a b))
(defun org-string<= (a b) (or (string= a b) (org-string-collate-lessp a b)))
(defun org-string>= (a b) (not (org-string-collate-lessp a b)))
(defun org-string> (a b) (and (not (string= a b)) (not (org-string-collate-lessp a b))))
(defun org-string<> (a b) (not (string= a b)))
(defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
(defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))