aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/gnus-sum.el24
1 files changed, 14 insertions, 10 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index f761fdb7945..556fb63a07f 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -50,6 +50,7 @@
50(defvar gnus-tmp-score-char) 50(defvar gnus-tmp-score-char)
51(defvar gnus-tmp-subject) 51(defvar gnus-tmp-subject)
52(defvar gnus-tmp-subject-or-nil) 52(defvar gnus-tmp-subject-or-nil)
53(defvar gnus-tmp-thread)
53(defvar gnus-tmp-unread) 54(defvar gnus-tmp-unread)
54(defvar gnus-tmp-unread-and-unselected) 55(defvar gnus-tmp-unread-and-unselected)
55(defvar gnus-tmp-unread-and-unticked) 56(defvar gnus-tmp-unread-and-unticked)
@@ -1443,15 +1444,17 @@ the normal Gnus MIME machinery."
1443 (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s) 1444 (?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
1444 (?i gnus-tmp-score ?d) 1445 (?i gnus-tmp-score ?d)
1445 (?z gnus-tmp-score-char ?c) 1446 (?z gnus-tmp-score-char ?c)
1446 (?V (gnus-thread-total-score (and (boundp 'thread) (car thread))) ?d) 1447 (?V (gnus-thread-total-score
1448 (and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread)))
1449 ?d)
1447 (?U gnus-tmp-unread ?c) 1450 (?U gnus-tmp-unread ?c)
1448 (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from) 1451 (?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
1449 ?s) 1452 ?s)
1450 (?t (gnus-summary-number-of-articles-in-thread 1453 (?t (gnus-summary-number-of-articles-in-thread
1451 (and (boundp 'thread) (car thread)) gnus-tmp-level) 1454 (and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread)) gnus-tmp-level)
1452 ?d) 1455 ?d)
1453 (?e (gnus-summary-number-of-articles-in-thread 1456 (?e (gnus-summary-number-of-articles-in-thread
1454 (and (boundp 'thread) (car thread)) gnus-tmp-level t) 1457 (and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread)) gnus-tmp-level t)
1455 ?c) 1458 ?c)
1456 (?u gnus-tmp-user-defined ?s) 1459 (?u gnus-tmp-user-defined ?s)
1457 (?P (gnus-pick-line-number) ?d) 1460 (?P (gnus-pick-line-number) ?d)
@@ -3786,9 +3789,9 @@ buffer that was in action when the last article was fetched."
3786 (setq gnus-tmp-name gnus-tmp-from)) 3789 (setq gnus-tmp-name gnus-tmp-from))
3787 (unless (numberp gnus-tmp-lines) 3790 (unless (numberp gnus-tmp-lines)
3788 (setq gnus-tmp-lines -1)) 3791 (setq gnus-tmp-lines -1))
3789 (if (= gnus-tmp-lines -1) 3792 (setq gnus-tmp-lines (if (= gnus-tmp-lines -1)
3790 (setq gnus-tmp-lines "?") 3793 "?"
3791 (setq gnus-tmp-lines (number-to-string gnus-tmp-lines))) 3794 (number-to-string gnus-tmp-lines)))
3792 (condition-case () 3795 (condition-case ()
3793 (put-text-property 3796 (put-text-property
3794 (point) 3797 (point)
@@ -5265,7 +5268,7 @@ or a straight list of headers."
5265 gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded 5268 gnus-tmp-header gnus-tmp-unread gnus-tmp-downloaded
5266 gnus-tmp-replied gnus-tmp-subject-or-nil 5269 gnus-tmp-replied gnus-tmp-subject-or-nil
5267 gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score 5270 gnus-tmp-dummy gnus-tmp-indentation gnus-tmp-lines gnus-tmp-score
5268 gnus-tmp-score-char gnus-tmp-from gnus-tmp-name 5271 gnus-tmp-score-char gnus-tmp-from gnus-tmp-name gnus-tmp-thread
5269 gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket 5272 gnus-tmp-number gnus-tmp-opening-bracket gnus-tmp-closing-bracket
5270 tree-stack) 5273 tree-stack)
5271 5274
@@ -5516,9 +5519,10 @@ or a straight list of headers."
5516 (setq gnus-tmp-name gnus-tmp-from)) 5519 (setq gnus-tmp-name gnus-tmp-from))
5517 (unless (numberp gnus-tmp-lines) 5520 (unless (numberp gnus-tmp-lines)
5518 (setq gnus-tmp-lines -1)) 5521 (setq gnus-tmp-lines -1))
5519 (if (= gnus-tmp-lines -1) 5522 (setq gnus-tmp-lines (if (= gnus-tmp-lines -1)
5520 (setq gnus-tmp-lines "?") 5523 "?"
5521 (setq gnus-tmp-lines (number-to-string gnus-tmp-lines))) 5524 (number-to-string gnus-tmp-lines)))
5525 (setq gnus-tmp-thread thread)
5522 (put-text-property 5526 (put-text-property
5523 (point) 5527 (point)
5524 (progn (eval gnus-summary-line-format-spec) (point)) 5528 (progn (eval gnus-summary-line-format-spec) (point))