# HG changeset patch # User Andreas Schwab # Date 1038874240 0 # Node ID 37ddf84a7528dd572a2f1ca66e726fbc0605cc39 # Parent edd0dd275f1f8e72176f10deb896a1545d4998db (whitespace-highlight-face): Fix face spec. diff -r edd0dd275f1f -r 37ddf84a7528 lisp/whitespace.el --- a/lisp/whitespace.el Mon Dec 02 23:30:54 2002 +0000 +++ b/lisp/whitespace.el Tue Dec 03 00:10:40 2002 +0000 @@ -5,7 +5,7 @@ ;; Author: Rajesh Vaidheeswarran ;; Keywords: convenience -;; $Id: whitespace.el,v 1.20 2002/09/11 21:30:25 monnier Exp $ +;; $Id: whitespace.el,v 1.21 2002/09/13 06:21:32 lektu Exp $ ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify @@ -312,15 +312,15 @@ :group 'faces) (defface whitespace-highlight-face '((((class color) (background light)) - (:background "green")) - (((class color) (background dark)) - (:background "sea green")) - (((class grayscale monochrome) - (background light)) - (:background "black")) - (((class grayscale monochrome) - (background dark)) - (:background "white"))) + (:background "green")) + (((class color) (background dark)) + (:background "sea green")) + (((class grayscale mono) + (background light)) + (:background "black")) + (((class grayscale mono) + (background dark)) + (:background "white"))) "Face used for highlighting the bogus whitespaces that exist in the buffer." :group 'whitespace-faces)