Variable: highlight-changes-face-list

highlight-changes-face-list is a customizable variable defined in hilit-chg.el.gz.

Value

nil

Documentation

A list of faces used when rotating changes.

Normally the variable is initialized to nil and the list is created from highlight-changes-colors when needed. However, you can set this variable to any list of faces. You will have to do this if you want faces which don't just differ from the highlight-changes face by the foreground color. Otherwise, this list will be constructed when needed from highlight-changes-colors.

Source Code

;; Defined in /usr/src/emacs/lisp/hilit-chg.el.gz
(defcustom highlight-changes-face-list nil
  "A list of faces used when rotating changes.
Normally the variable is initialized to nil and the list is created from
`highlight-changes-colors' when needed.  However, you can set this variable
to any list of faces.  You will have to do this if you want faces which
don't just differ from the `highlight-changes' face by the foreground color.
Otherwise, this list will be constructed when needed from
`highlight-changes-colors'."
  :type '(choice
	  (repeat
	    :notify hilit-chg-cust-fix-changes-face-list
            face)
          (const :tag "Derive from highlight-changes-colors"  nil)))