Function: woman-default-faces

woman-default-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-default-faces)

Documentation

Set foreground colors of italic and bold faces to their default values.

Probably introduced at or before Emacs version 24.4.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-default-faces ()
  "Set foreground colors of italic and bold faces to their default values."
  (declare (obsolete "customize the woman-* faces instead." "24.4"))
  (interactive)
  (face-spec-set 'woman-italic (face-user-default-spec 'woman-italic))
  (face-spec-set 'woman-bold (face-user-default-spec 'woman-bold)))