Variable: woman-fontify

woman-fontify is a customizable variable defined in woman.el.gz.

Value

nil

Documentation

If non-nil then WoMan assumes that face support is available.

It defaults to a non-nil value if the display supports either colors or different fonts.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defcustom woman-fontify
  (or (display-color-p)
      (display-graphic-p)
      (x-display-color-p))
  "If non-nil then WoMan assumes that face support is available.
It defaults to a non-nil value if the display supports either colors
or different fonts."
  :type 'boolean
  :group 'woman-faces)