Variable: ps-use-face-background

ps-use-face-background is a customizable variable defined in ps-print.el.gz.

Value

nil

Documentation

Specify if face background should be used.

Valid values are:

   t always use face background color.
   nil never use face background color.
   (face...) list of faces whose background color will be used.

Any other value will be treated as t.

This variable was added, or its default value changed, in Emacs 20.

View in manual

Probably introduced at or before Emacs version 20.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defcustom ps-use-face-background nil
  "Specify if face background should be used.

Valid values are:

   t		always use face background color.
   nil		never use face background color.
   (face...)	list of faces whose background color will be used.

Any other value will be treated as t."
  :type '(choice :menu-tag "Use Face Background"
		 :tag "Use Face Background"
		 (const :tag "Always Use Face Background" t)
		 (const :tag "Never Use Face Background" nil)
		 (repeat :menu-tag "Face Background List"
			 :tag "Face Background List"
			 face))
  :version "20"
  :group 'ps-print-face)