diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-08-13 15:59:34 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-08-13 15:59:34 +0000 |
commit | 6c58c39c35755510b3ff1dc85f3625d28c732d2b (patch) | |
tree | 7eadf52f0b35353c75998ca29668785b41fbb2b6 /lisp/faces.el | |
parent | 850d0752fb8ab02e3ffc80567578f9e9a4cb77f9 (diff) | |
download | emacs-6c58c39c35755510b3ff1dc85f3625d28c732d2b.tar.gz |
* faces.el (help-argument-name): Define it here instead of
help-fns.el, because in daemon mode help-fns.el may be loaded when
faces are still uninitialized (Bug#1078).
* help-fns.el (help-argument-name): Move defface to faces.el.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index bc7513eab64..b8d21404e87 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2506,6 +2506,9 @@ Note: Other faces cannot inherit from the cursor face." :group 'menu :group 'basic-faces) +(defface help-argument-name '((((supports :slant italic)) :inherit italic)) + "Face to highlight argument names in *Help* buffers." + :group 'help) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Manipulating font names. |