From: John Paul Wallington Date: Wed, 23 Jul 2003 11:39:11 +0000 (+0000) Subject: (defface tooltip): Inherit from variable-pitch. X-Git-Tag: ttn-vms-21-2-B4~9244 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=39440204a7a31173914a185d3676e925ebf60887;p=emacs.git (defface tooltip): Inherit from variable-pitch. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bb4df14901e..a2c85ee8e9c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2003-07-23 John Paul Wallington + + * tooltip.el (defface tooltip): Inherit from variable-pitch. + 2003-07-23 Glenn Morris * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc diff --git a/lisp/tooltip.el b/lisp/tooltip.el index ea5aaaa87d6..59cb3e27913 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el @@ -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)