Variable: ps-print-color-p

ps-print-color-p is a customizable variable defined in ps-print.el.gz.

Value

t

Documentation

Specify how buffer's text color is printed.

Valid values are:

   nil Do not print colors.

   t Print colors.

   black-white Print colors on black/white printer.
See also ps-black-white-faces.

Any other value is treated as t.

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

Probably introduced at or before Emacs version 20.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;; Colors

;; Printing color requires x-color-values.
;;;###autoload
(defcustom ps-print-color-p (fboundp 'x-color-values)
  "Specify how buffer's text color is printed.

Valid values are:

   nil		Do not print colors.

   t		Print colors.

   black-white	Print colors on black/white printer.
		See also `ps-black-white-faces'.

Any other value is treated as t."
  :type '(choice :menu-tag "Print Color"
		 :tag "Print Color"
		 (const :tag "Do NOT Print Color" nil)
		 (const :tag "Print Always Color" t)
		 (const :tag "Print Black/White Color" black-white))
  :version "20"
  :group 'ps-print-color)