From: Juanma Barranquero Date: Sun, 6 Jun 2004 21:44:22 +0000 (+0000) Subject: (help-argument-name): Inherit from italic face only if the frame X-Git-Tag: ttn-vms-21-2-B4~5898 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8c1138beafca2adf9758360ea63d91d5ecaf4426;p=emacs.git (help-argument-name): Inherit from italic face only if the frame supports it. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 05c421815f7..5f56d7ab627 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2004-06-06 Juanma Barranquero + + * help-fns.el (help-argument-name): Inherit from italic face only + if the frame supports it. + 2004-06-06 Jan Dj,Ad(Brv * toolbar/alias.pbm toolbar/close.pbm toolbar/copy.pbm toolbar/cut.pbm diff --git a/lisp/help-fns.el b/lisp/help-fns.el index eb15bc7726f..e534c6998a7 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -238,7 +238,7 @@ KIND should be `var' for a variable or `subr' for a subroutine." file))))) ;;;###autoload -(defface help-argument-name '((t :inherit italic)) +(defface help-argument-name '((((supports :slant italic)) :inherit italic)) "Face to highlight argument names in *Help* buffers." :group 'help)