(bitmap-area): Change background to white for mono displays.
authorGerd Moellmann <gerd@gnu.org>
Mon, 26 Jul 1999 13:03:06 +0000 (13:03 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 26 Jul 1999 13:03:06 +0000 (13:03 +0000)
lisp/faces.el

index bc90e72..971ccbf 100644 (file)
@@ -1376,7 +1376,10 @@ created."
 (defface bitmap-area
   '((((class color))
      (:background "grey95"))
-    (t (:background "gray")))
+    (((class mono))
+     (:background "white"))
+    (t
+     (:background "gray")))
   "Basic face for bitmap areas under X."
   :group 'basic-faces)