[gnus git] branch master updated: m0-5-304-gf950cc7 =1= * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for string values of 'gcc-self.
Andrew Cohen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via f950cc759a3eb86f83503da090230d4646b83764 (commit)
from c6b7a807f882de4474987010a04124110dfe3235 (commit)
- Log -----------------------------------------------------------------
commit f950cc759a3eb86f83503da090230d4646b83764
Author: Andrew Cohen <[email protected]>
Date: Thu Apr 25 21:29:37 2013 -0400
* gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
string values of 'gcc-self.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6004e8b..36c9137 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-04-25 Andrew Cohen <[email protected]>
+
+ * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
+ string values of 'gcc-self. Thanks to Saroj Thirumalai.
+
2013-04-24 Andrew Cohen <[email protected]>
* nnir.el (nnir-close-group): Make sure we are in the right group.
diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el
index 362dd3e..fce9a36 100644
--- a/lisp/gnus-msg.el
+++ b/lisp/gnus-msg.el
@@ -1719,8 +1719,8 @@ this is a reply."
(group (when group (gnus-group-decoded-name group)))
(var (or gnus-outgoing-message-group gnus-message-archive-group))
(gcc-self-val
- (and group (gnus-group-find-parameter group 'gcc-self)
- (not (gnus-virtual-group-p group))))
+ (and group (not (gnus-virtual-group-p group))
+ (gnus-group-find-parameter group 'gcc-self)))
result
(groups
(cond
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/gnus-msg.el | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project