aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2012-08-26 10:57:07 +0800
committerChong Yidong2012-08-26 10:57:07 +0800
commit4c47bd1ecb8032ed1be126f7d0f08014a0beafd4 (patch)
tree53e95185c9f0cbc8a4b1e9c2e97c214a51ee5ce3
parent0f46bc7515ccc835e5752b47f8752ab7aaf7ed27 (diff)
downloademacs-4c47bd1ecb8032ed1be126f7d0f08014a0beafd4.tar.gz
emacs-4c47bd1ecb8032ed1be126f7d0f08014a0beafd4.zip
* faces.el (help-argument-name): Always inherit from italic.
Fixes: debbugs:12213
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/faces.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 94ad0badad0..7b789ad64ed 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12012-08-26 Chong Yidong <cyd@gnu.org>
2
3 * faces.el (help-argument-name): Always inherit from italic
4 (Bug#12213).
5
12012-08-25 Martin Rudalics <rudalics@gmx.at> 62012-08-25 Martin Rudalics <rudalics@gmx.at>
2 7
3 * window.el (window--even-window-heights): Even heights when 8 * window.el (window--even-window-heights): Even heights when
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."
2444 :group 'menu 2444 :group 'menu
2445 :group 'basic-faces) 2445 :group 'basic-faces)
2446 2446
2447(defface help-argument-name '((((supports :slant italic)) :inherit italic)) 2447(defface help-argument-name '((t :inherit italic))
2448 "Face to highlight argument names in *Help* buffers." 2448 "Face to highlight argument names in *Help* buffers."
2449 :group 'help) 2449 :group 'help)
2450 2450