Synch to No Gnus 200501070617.
authoryamaoka <yamaoka>
Fri, 7 Jan 2005 06:20:00 +0000 (06:20 +0000)
committeryamaoka <yamaoka>
Fri, 7 Jan 2005 06:20:00 +0000 (06:20 +0000)
lisp/ChangeLog
lisp/spam.el

index e588d41..014032c 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
+       which is unreadable in some setups.
+
 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-spec.el (gnus-update-format-specifications): Flush the
index a02c2c6..524bae4 100644 (file)
@@ -350,7 +350,19 @@ Only meaningful if you enable `spam-use-blackholes'."
   :type '(radio (const nil) regexp)
   :group 'spam)
 
-(defcustom spam-face 'gnus-splash-face
+(defface spam-face
+  '((((class color) (type tty) (background dark))
+     (:foreground "gray80" :background "gray50"))
+    (((class color) (type tty) (background light))
+     (:foreground "gray50" :background "gray80"))
+    (((class color) (background dark))
+     (:foreground "ivory2"))
+    (((class color) (background light))
+     (:foreground "ivory4"))
+    (t :inverse-video t))
+  "Face for spam-marked articles.")
+
+(defcustom spam-face 'spam-face
   "Face for spam-marked articles."
   :type 'face
   :group 'spam)