From 4e970c912628d267196a0aa015ada4e98b4a1a5c Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 2 Sep 2005 08:44:48 +0000 Subject: [PATCH] Synch to No Gnus 200509020844. --- lisp/ChangeLog | 5 +++++ lisp/gnus-msg.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cbac8a8..3a76ded 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-09-02 Katsumi Yamaoka + + * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using + list, not listp. + 2005-09-02 Hrvoje Niksic * mm-encode.el (mm-encode-content-transfer-encoding): Likewise diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el index 6ee67c3..a1e69f6 100644 --- a/lisp/gnus-msg.el +++ b/lisp/gnus-msg.el @@ -1850,7 +1850,7 @@ this is a reply." (gcc (cond ((functionp group) (funcall group)) - ((or (stringp group) (list group)) + ((or (stringp group) (listp group)) group)))) (when gcc (insert "Gcc: " -- 1.7.10.4