Variable: mh-highlight-citation-style
mh-highlight-citation-style is a customizable variable defined in
mh-e.el.gz.
Value
gnus
Documentation
Style for highlighting citations.
If the sender of the message has cited other messages in his message, then MH-E will highlight these citations to emphasize the sender's actual response. This option can be customized to change the highlighting style. The "Multicolor" method uses a different color for each indentation while the "Monochrome" method highlights all citations in red. To disable highlighting of citations entirely, choose "None".
This variable was added, or its default value changed, in MH-E version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-highlight-citation-style 'gnus
"Style for highlighting citations.
If the sender of the message has cited other messages in his
message, then MH-E will highlight these citations to emphasize
the sender's actual response. This option can be customized to
change the highlighting style. The \"Multicolor\" method uses a
different color for each indentation while the \"Monochrome\"
method highlights all citations in red. To disable highlighting
of citations entirely, choose \"None\"."
:type '(choice (const :tag "Multicolor" gnus)
(const :tag "Monochrome" font-lock)
(const :tag "None" nil))
:group 'mh-show
:package-version '(MH-E . "8.0"))