(defface tooltip): Inherit from variable-pitch.

This commit is contained in:
John Paul Wallington 2003-07-23 11:39:11 +00:00
parent 53b583d38f
commit 39440204a7
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2003-07-23 John Paul Wallington <jpw@gnu.org>
* tooltip.el (defface tooltip): Inherit from variable-pitch.
2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
* emacs-lisp/derived.el (define-derived-mode): Mention hook in doc

View file

@ -113,8 +113,11 @@ position to pop up the tooltip."
(defface tooltip
'((((class color))
(:background "lightyellow" :foreground "black"))
(t ()))
:background "lightyellow"
:foreground "black"
:inherit variable-pitch)
(t
:inherit variable-pitch))
"Face for tooltips."
:group 'tooltip)