Variable: ps-italic-faces

ps-italic-faces is a customizable variable defined in ps-print.el.gz.

Value

(cperl-nonoverridable-face cperl-hash-face)

Documentation

A list of the (non-italic) faces that should be printed in italic font.

This applies to generating PostScript.

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

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defcustom ps-italic-faces
  (unless ps-print-color-p
    '(font-lock-variable-name-face
      font-lock-type-face
      font-lock-string-face
      font-lock-comment-face
      font-lock-warning-face))
  "A list of the (non-italic) faces that should be printed in italic font.
This applies to generating PostScript."
  :type '(repeat face)
  :version "20"
  :group 'ps-print-face)