changeset 25070:b4b6828139fd

(bitmap-area): Change background to white for mono displays.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 26 Jul 1999 13:03:06 +0000
parents ee9bfbc340ba
children 31cd7d7a54df
files lisp/faces.el
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/faces.el	Mon Jul 26 11:58:24 1999 +0000
+++ b/lisp/faces.el	Mon Jul 26 13:03:06 1999 +0000
@@ -1376,7 +1376,10 @@
 (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)