summaryrefslogtreecommitdiff
path: root/lisp/whitespace.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2002-12-03 00:10:40 +0000
committerAndreas Schwab <schwab@suse.de>2002-12-03 00:10:40 +0000
commit26e57f3b8a138b4b15adea9646af161e3f805de0 (patch)
tree7bafc58f23b7f3b76a2ed79a9085a6ee84f8a814 /lisp/whitespace.el
parent170d30061f47f6adc265bff731fb1f170c9eee5f (diff)
downloademacs-26e57f3b8a138b4b15adea9646af161e3f805de0.tar.gz
(whitespace-highlight-face): Fix face spec.
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r--lisp/whitespace.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index 0742ae7fc62..74f5f4982f6 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -5,7 +5,7 @@
;; Author: Rajesh Vaidheeswarran <rv@gnu.org>
;; 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 @@ To disable timer scans, set this to zero."
: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)