bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#59458: [PATCH] Fix tracing for advanced scoring


From: Łukasz Stelmach
Subject: bug#59458: [PATCH] Fix tracing for advanced scoring
Date: Mon, 21 Nov 2022 22:30:55 +0100

* lisp/gnus/gnus-logic.el (gnus-score-advanced): Move the tracing
code outside of if so it's executed for both branches.
---
 lisp/gnus/gnus-logic.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lisp/gnus/gnus-logic.el b/lisp/gnus/gnus-logic.el
index c1b559ba6f4..346d8a28910 100644
--- a/lisp/gnus/gnus-logic.el
+++ b/lisp/gnus/gnus-logic.el
@@ -71,11 +71,11 @@
                    (+ (cdr score) new-score))
          (push (cons (mail-header-number gnus-advanced-headers)
                      new-score)
-               gnus-newsgroup-scored)
-         (when trace
-           (push (cons "A file" rule)
-                 ;; Must be synced with `gnus-score-edit-file-at-point'.
-                 gnus-score-trace)))))))
+               gnus-newsgroup-scored))
+       (when trace
+         (push (cons "A file" rule)
+               ;; Must be synced with `gnus-score-edit-file-at-point'.
+               gnus-score-trace))))))
 
 (defun gnus-advanced-score-rule (rule)
   "Apply RULE to `gnus-advanced-headers'."
-- 
2.30.2






reply via email to

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