Function: woman-monochrome-faces
woman-monochrome-faces is an interactive and byte-compiled function
defined in woman.el.gz.
This command is obsolete since 24.4; customize the woman-* faces instead.
Signature
(woman-monochrome-faces)
Documentation
Set foreground colors of italic and bold faces to that of the default face.
This is usually either black or white.
Probably introduced at or before Emacs version 24.4.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-monochrome-faces ()
"Set foreground colors of italic and bold faces to that of the default face.
This is usually either black or white."
(declare (obsolete "customize the woman-* faces instead." "24.4"))
(interactive)
(set-face-foreground 'woman-italic 'unspecified)
(set-face-foreground 'woman-bold 'unspecified))