diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-12-31 20:32:52 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-12-31 20:32:52 +0000 |
commit | e31c1fd5e46e19e051c2e881303305616bcc1db9 (patch) | |
tree | c3d797aa1229d102f9e43721d53f49650434a163 /lisp/woman.el | |
parent | b5555381f2fd6872b028b4ef935e39f6f3f2bcc2 (diff) | |
download | emacs-e31c1fd5e46e19e051c2e881303305616bcc1db9.tar.gz |
(ps-font-lock-face-attributes): Use :weight and :slant.
Diffstat (limited to 'lisp/woman.el')
-rw-r--r-- | lisp/woman.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/woman.el b/lisp/woman.el index e4440be4690..902fd211744 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -840,14 +840,14 @@ or different fonts." ;; You should probably select either italic or underline as you prefer, but ;; not both, although italic and underline work together perfectly well! (defface woman-italic-face - `((((background light)) (:italic t :underline t :foreground "red")) - (((background dark)) (:italic t :underline t))) + `((((background light)) (:slant italic :underline t :foreground "red")) + (((background dark)) (:slant italic :underline t))) "Face for italic font in man pages." :group 'woman-faces) (defface woman-bold-face - '((((background light)) (:bold t :foreground "blue")) - (((background dark)) (:bold t :foreground "green2"))) + '((((background light)) (:weight bold :foreground "blue")) + (((background dark)) (:weight bold :foreground "green2"))) "Face for bold font in man pages." :group 'woman-faces) |