From: Gerd Moellmann Date: Mon, 26 Jul 1999 13:03:06 +0000 (+0000) Subject: (bitmap-area): Change background to white for mono displays. X-Git-Tag: emacs-pretest-21.0.90~7371 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d08948993c895097bebdc51125ab6d4f83e4807;p=emacs.git (bitmap-area): Change background to white for mono displays. --- diff --git a/lisp/faces.el b/lisp/faces.el index bc90e7203b2..971ccbf5a4d 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -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)