Variable: gnus-summary-line-format-alist
gnus-summary-line-format-alist is a variable defined in
gnus-sum.el.gz.
Value
Large value
((78 (mail-header-number gnus-tmp-header) 100)
(83 (mail-header-subject gnus-tmp-header) 115)
(115 gnus-tmp-subject-or-nil 115) (110 gnus-tmp-name 115)
(65
(car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
115)
(97
(or (car (funcall gnus-extract-address-components gnus-tmp-from))
gnus-tmp-from)
115)
(70 gnus-tmp-from 115) (120 (mail-header-xref gnus-tmp-header) 115)
(68 (mail-header-date gnus-tmp-header) 115)
(100 (gnus-dd-mmm (mail-header-date gnus-tmp-header)) 115)
(111 (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) 115)
(77 (mail-header-id gnus-tmp-header) 115)
(114 (mail-header-references gnus-tmp-header) 115)
(99 (or (mail-header-chars gnus-tmp-header) 0) 100)
(107 (gnus-summary-line-message-size gnus-tmp-header) 115)
(76 gnus-tmp-lines 115)
(90
(or (nnselect-article-rsv (mail-header-number gnus-tmp-header)) 0)
100)
(71
(or (nnselect-article-group (mail-header-number gnus-tmp-header)) "")
115)
(103
(or
(gnus-group-short-name
(nnselect-article-group (mail-header-number gnus-tmp-header)))
"")
115)
(79 gnus-tmp-downloaded 99) (73 gnus-tmp-indentation 115)
(84 (if (= gnus-tmp-level 0) "" (make-string (frame-width) 32)) 115)
(82 gnus-tmp-replied 99) (91 gnus-tmp-opening-bracket 115)
(93 gnus-tmp-closing-bracket 115)
(62 (make-string gnus-tmp-level 32) 115)
(60 (make-string (max 0 (- 20 gnus-tmp-level)) 32) 115)
(105 gnus-tmp-score 100) (122 gnus-tmp-score-char 99)
(86
(gnus-thread-total-score
(and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread)))
100)
(85 gnus-tmp-unread 99)
(102
(gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
115)
(116
(gnus-summary-number-of-articles-in-thread
(and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread))
gnus-tmp-level)
100)
(101
(gnus-summary-number-of-articles-in-thread
(and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread))
gnus-tmp-level t)
99)
(117 gnus-tmp-user-defined 115) (80 (gnus-pick-line-number) 100)
(66 gnus-tmp-thread-tree-header-string 115)
(user-date (gnus-user-date (mail-header-date gnus-tmp-header)) 115))
Documentation
An alist of format specifications that can appear in summary lines.
These are paired with what variables they correspond with, along with the type of the variable (string, integer, character, etc).
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defvar gnus-summary-line-format-alist
`((?N ,(macroexpand '(mail-header-number gnus-tmp-header)) ?d)
(?S ,(macroexpand '(mail-header-subject gnus-tmp-header)) ?s)
(?s gnus-tmp-subject-or-nil ?s)
(?n gnus-tmp-name ?s)
(?A (car (cdr (funcall gnus-extract-address-components gnus-tmp-from)))
?s)
(?a (or (car (funcall gnus-extract-address-components gnus-tmp-from))
gnus-tmp-from)
?s)
(?F gnus-tmp-from ?s)
(?x ,(macroexpand '(mail-header-xref gnus-tmp-header)) ?s)
(?D ,(macroexpand '(mail-header-date gnus-tmp-header)) ?s)
(?d (gnus-dd-mmm (mail-header-date gnus-tmp-header)) ?s)
(?o (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) ?s)
(?M ,(macroexpand '(mail-header-id gnus-tmp-header)) ?s)
(?r ,(macroexpand '(mail-header-references gnus-tmp-header)) ?s)
(?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
(?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
(?L gnus-tmp-lines ?s)
(?Z (or (nnselect-article-rsv (mail-header-number gnus-tmp-header))
0) ?d)
(?G (or (nnselect-article-group (mail-header-number gnus-tmp-header))
"") ?s)
(?g (or (gnus-group-short-name
(nnselect-article-group (mail-header-number gnus-tmp-header)))
"") ?s)
(?O gnus-tmp-downloaded ?c)
(?I gnus-tmp-indentation ?s)
(?T (if (= gnus-tmp-level 0) "" (make-string (frame-width) ? )) ?s)
(?R gnus-tmp-replied ?c)
(?\[ gnus-tmp-opening-bracket ?s)
(?\] gnus-tmp-closing-bracket ?s)
(?\> (make-string gnus-tmp-level ? ) ?s)
(?\< (make-string (max 0 (- 20 gnus-tmp-level)) ? ) ?s)
(?i gnus-tmp-score ?d)
(?z gnus-tmp-score-char ?c)
(?V (gnus-thread-total-score
(and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread)))
?d)
(?U gnus-tmp-unread ?c)
(?f (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from)
?s)
(?t (gnus-summary-number-of-articles-in-thread
(and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread)) gnus-tmp-level)
?d)
(?e (gnus-summary-number-of-articles-in-thread
(and (boundp 'gnus-tmp-thread) (car gnus-tmp-thread)) gnus-tmp-level t)
?c)
(?u gnus-tmp-user-defined ?s)
(?P (gnus-pick-line-number) ?d)
(?B gnus-tmp-thread-tree-header-string ?s)
(user-date (gnus-user-date
,(macroexpand '(mail-header-date gnus-tmp-header)))
?s))
"An alist of format specifications that can appear in summary lines.
These are paired with what variables they correspond with, along with
the type of the variable (string, integer, character, etc).")