From 39440204a7a31173914a185d3676e925ebf60887 Mon Sep 17 00:00:00 2001 From: John Paul Wallington Date: Wed, 23 Jul 2003 11:39:11 +0000 Subject: [PATCH] (defface tooltip): Inherit from variable-pitch. --- lisp/ChangeLog | 4 ++++ lisp/tooltip.el | 7 +++++-- 2 files changed, 9 insertions(+), 2 deletions(-) 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) -- 2.39.2