]> git.eshelyaron.com Git - emacs.git/commitdiff
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-17
authorMiles Bader <miles@gnu.org>
Fri, 7 Jan 2005 06:16:20 +0000 (06:16 +0000)
committerMiles Bader <miles@gnu.org>
Fri, 7 Jan 2005 06:16:20 +0000 (06:16 +0000)
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>.

lisp/gnus/ChangeLog
lisp/gnus/spam.el
man/ChangeLog
man/message.texi

index 46a1449ce79349a05a19d85b789b11ecb1ee1baa..4eee8bcbbfcef685a68176ed7e797f8a5b3fccce 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.
+
 2004-12-27  Simon Josefsson  <jas@extundo.com>
 
        * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used
index a0b28340717ea98997e3053635ae382a25d5ac39..9a55ba9f318c223210b14c04c5b67bbb366618bc 100644 (file)
@@ -298,7 +298,19 @@ All unmarked article in such group receive the spam mark on group entry."
   :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)
index 264db9c29dd51006d6dce14beb8861cd33e6b060..83eeaaf3129f9d5d3a3541002e9713ff6fc34b7e 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.texi (Reply): `message-reply-to-function' should return
+       a list.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.co.jp>.
+
 2005-01-06  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
 
        * faq.texi (Changing load-path): Fix typo.
index 4d4f7af2a074abe45bfb7f9a97558b786e451209..5e488b0e7cf06e78553c1777d5ef56f8a3a0a380 100644 (file)
@@ -146,16 +146,15 @@ If you want the replies to go to the @code{Sender} instead of the
 This function will be called narrowed to the head of the article that is
 being replied to.
 
-As you can see, this function should return a string if it has an
-opinion as to what the To header should be.  If it does not, it should
-just return @code{nil}, and the normal methods for determining the To
-header will be used.
-
-This function can also return a list.  In that case, each list element
-should be a cons, where the @sc{car} should be the name of a header
-(e.g. @code{Cc}) and the @sc{cdr} should be the header value
-(e.g. @samp{larsi@@ifi.uio.no}).  All these headers will be inserted into
-the head of the outgoing mail.
+As you can see, this function should return a list.  In this case, it
+returns @code{((To . "Whom"))} if it has an opinion as to what the To
+header should be.  If it does not, it should just return @code{nil}, and
+the normal methods for determining the To header will be used.
+
+Each list element should be a cons, where the @sc{car} should be the
+name of a header (e.g. @code{Cc}) and the @sc{cdr} should be the header
+value (e.g. @samp{larsi@@ifi.uio.no}).  All these headers will be
+inserted into the head of the outgoing mail.
 
 
 @node Wide Reply