diff options
| author | Miles Bader | 2005-01-07 06:16:20 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-01-07 06:16:20 +0000 |
| commit | 112d84efad57869bf65e1ee002dadb0c42e40308 (patch) | |
| tree | 3568a202aa05fc9ea27953e9fa88da17ecbc4f48 /lisp | |
| parent | c7ce7fc43b68369e18de0ccc5ded610823b8c1da (diff) | |
| download | emacs-112d84efad57869bf65e1ee002dadb0c42e40308.tar.gz emacs-112d84efad57869bf65e1ee002dadb0c42e40308.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-17
Merge from gnus--rel--5.10
Patches applied:
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-83
- miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-84
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-2
Merge from miles@gnu.org--gnu-2004
2005-01-05 Reiner Steib <Reiner.Steib@gmx.de>
* lisp/gnus/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>
* man/message.texi (Reply): `message-reply-to-function' should return
a list. Suggested by ARISAWA Akihiro <ari@mbf.ocn.co.jp>.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/spam.el | 14 |
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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2004-12-27 Simon Josefsson <jas@extundo.com> | 6 | 2004-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) |