aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/spam.el14
2 files changed, 18 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 46a1449ce79..4eee8bcbbfc 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12005-01-05 Reiner Steib <Reiner.Steib@gmx.de>
2
3 * spam.el (spam-face): New face. Don't use `gnus-splash-face'
4 which is unreadable in some setups.
5
12004-12-27 Simon Josefsson <jas@extundo.com> 62004-12-27 Simon Josefsson <jas@extundo.com>
2 7
3 * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used 8 * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used
diff --git a/lisp/gnus/spam.el b/lisp/gnus/spam.el
index a0b28340717..9a55ba9f318 100644
--- a/lisp/gnus/spam.el
+++ b/lisp/gnus/spam.el
@@ -298,7 +298,19 @@ All unmarked article in such group receive the spam mark on group entry."
298 :type '(radio (const nil) regexp) 298 :type '(radio (const nil) regexp)
299 :group 'spam) 299 :group 'spam)
300 300
301(defcustom spam-face 'gnus-splash-face 301(defface spam-face
302 '((((class color) (type tty) (background dark))
303 (:foreground "gray80" :background "gray50"))
304 (((class color) (type tty) (background light))
305 (:foreground "gray50" :background "gray80"))
306 (((class color) (background dark))
307 (:foreground "ivory2"))
308 (((class color) (background light))
309 (:foreground "ivory4"))
310 (t :inverse-video t))
311 "Face for spam-marked articles.")
312
313(defcustom spam-face 'spam-face
302 "Face for spam-marked articles." 314 "Face for spam-marked articles."
303 :type 'face 315 :type 'face
304 :group 'spam) 316 :group 'spam)