From: Alex Bochannek Date: Thu, 10 Sep 2020 13:16:04 +0000 (+0200) Subject: Fix up < and > "date" scoring rules in Gnus X-Git-Tag: emacs-28.0.90~6152 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6c46dddcb25c959836d4b7ab1d6f174db5dff4b2;p=emacs.git Fix up < and > "date" scoring rules in Gnus * lisp/gnus/gnus-score.el (gnus-score-date): The previous < and > "date" scoring rules (added in the previous patch) had reversed logic (bug#43270). Copyright-paperwork-exempt: yes --- diff --git a/lisp/gnus/gnus-score.el b/lisp/gnus/gnus-score.el index c5156a195a3..6a0e8ceb998 100644 --- a/lisp/gnus/gnus-score.el +++ b/lisp/gnus/gnus-score.el @@ -1695,9 +1695,10 @@ score in `gnus-newsgroup-scored' by SCORE." match (gnus-date-iso8601 (nth 0 kill)))) ((eq type '<) (setq type 'after - match-func 'gnus-string> + match-func 'string< match (gnus-time-iso8601 - (time-add (current-time) (* 86400 (nth 0 kill)))))) + (time-subtract (current-time) + (* 86400 (nth 0 kill)))))) ((eq type 'before) (setq match-func 'gnus-string> match (gnus-date-iso8601 (nth 0 kill)))) @@ -1705,7 +1706,8 @@ score in `gnus-newsgroup-scored' by SCORE." (setq type 'before match-func 'gnus-string> match (gnus-time-iso8601 - (time-add (current-time) (* -86400 (nth 0 kill)))))) + (time-subtract (current-time) + (* 86400 (nth 0 kill)))))) ((eq type 'at) (setq match-func 'string= match (gnus-date-iso8601 (nth 0 kill))))