Variable: ps-underlined-faces

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

Value

(cperl-array-face cperl-hash-face underline cperl-nonoverridable-face)

Documentation

A list of the (non-underlined) faces that should be printed underlined.

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-underlined-faces
  (unless ps-print-color-p
    '(font-lock-function-name-face
      font-lock-constant-face
      font-lock-warning-face))
  "A list of the (non-underlined) faces that should be printed underlined.
This applies to generating PostScript."
  :type '(repeat face)
  :version "20"
  :group 'ps-print-face)