diff options
author | Chong Yidong <cyd@gnu.org> | 2012-08-26 10:57:07 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-08-26 10:57:07 +0800 |
commit | 4c47bd1ecb8032ed1be126f7d0f08014a0beafd4 (patch) | |
tree | 53e95185c9f0cbc8a4b1e9c2e97c214a51ee5ce3 /lisp/faces.el | |
parent | 0f46bc7515ccc835e5752b47f8752ab7aaf7ed27 (diff) | |
download | emacs-4c47bd1ecb8032ed1be126f7d0f08014a0beafd4.tar.gz |
* faces.el (help-argument-name): Always inherit from italic.
Fixes: debbugs:12213
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 2e1ba7798e9..6a477e172e1 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2444,7 +2444,7 @@ Note: Other faces cannot inherit from the cursor face." :group 'menu :group 'basic-faces) -(defface help-argument-name '((((supports :slant italic)) :inherit italic)) +(defface help-argument-name '((t :inherit italic)) "Face to highlight argument names in *Help* buffers." :group 'help) |