]> git.eshelyaron.com Git - emacs.git/commitdiff
(defface tooltip): Inherit from variable-pitch.
authorJohn Paul Wallington <jpw@pobox.com>
Wed, 23 Jul 2003 11:39:11 +0000 (11:39 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Wed, 23 Jul 2003 11:39:11 +0000 (11:39 +0000)
lisp/ChangeLog
lisp/tooltip.el

index bb4df14901e5ace531416c37419acd539dce2397..a2c85ee8e9c9189fd4b5bcb03c2fe3da6ec50211 100644 (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
index ea5aaaa87d6ef706def1ba9c64276e730b092793..59cb3e279133737caeba441e8bd3941459685c97 100644 (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)