diff options
author | John Paul Wallington <jpw@pobox.com> | 2003-07-23 11:39:11 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2003-07-23 11:39:11 +0000 |
commit | 39440204a7a31173914a185d3676e925ebf60887 (patch) | |
tree | c9051b2d8a0d2bab17184a75b75795731ad3a5d7 /lisp/tooltip.el | |
parent | 53b583d38f49696f257f157f5df2d66dbce14841 (diff) | |
download | emacs-39440204a7a31173914a185d3676e925ebf60887.tar.gz |
(defface tooltip): Inherit from variable-pitch.
Diffstat (limited to 'lisp/tooltip.el')
-rw-r--r-- | lisp/tooltip.el | 7 |
1 files changed, 5 insertions, 2 deletions
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) |