From: Chong Yidong Date: Sun, 26 Aug 2012 02:57:07 +0000 (+0800) Subject: * faces.el (help-argument-name): Always inherit from italic. X-Git-Tag: emacs-24.2.90~515 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4c47bd1ecb8032ed1be126f7d0f08014a0beafd4;p=emacs.git * faces.el (help-argument-name): Always inherit from italic. Fixes: debbugs:12213 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 94ad0badad0..7b789ad64ed 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-08-26 Chong Yidong + + * faces.el (help-argument-name): Always inherit from italic + (Bug#12213). + 2012-08-25 Martin Rudalics * 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." :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)