Variable: gnus-cite-face-list
gnus-cite-face-list is a customizable variable defined in
gnus-cite.el.gz.
Value
(gnus-cite-1 gnus-cite-2 gnus-cite-3 gnus-cite-4 gnus-cite-5
gnus-cite-6 gnus-cite-7 gnus-cite-8 gnus-cite-9
gnus-cite-10 gnus-cite-11)
Documentation
List of faces used for highlighting citations.
When there are citations from multiple articles in the same message, Gnus will try to give each citation from each article its own face. This should make it easier to see who wrote what.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-cite.el.gz
(defcustom gnus-cite-face-list
'(gnus-cite-1 gnus-cite-2 gnus-cite-3 gnus-cite-4 gnus-cite-5 gnus-cite-6
gnus-cite-7 gnus-cite-8 gnus-cite-9 gnus-cite-10 gnus-cite-11)
"List of faces used for highlighting citations.
When there are citations from multiple articles in the same message,
Gnus will try to give each citation from each article its own face.
This should make it easier to see who wrote what."
:type '(repeat face)
:set (lambda (symbol value)
(prog1
(custom-set-default symbol value)
(if (boundp 'gnus-message-max-citation-depth)
(setq gnus-message-max-citation-depth (length value)))
(if (boundp 'gnus-message-citation-keywords)
(setq gnus-message-citation-keywords
`((gnus-message-search-citation-line
,@(let ((list nil)
(count 1))
(dolist (face value (nreverse list))
(push (list count (list 'quote face) 'prepend t)
list)
(setq count (1+ count)))))))))))