mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 12:57:34 +00:00
lisp/gnus/gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for string values of 'gcc-self
This commit is contained in:
parent
9d1c5fb6ca
commit
9eb45973fc
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2013-04-25 Andrew Cohen <cohen@bu.edu>
|
||||
|
||||
* 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 <cohen@bu.edu>
|
||||
|
||||
* nnir.el (nnir-close-group): Make sure we are in the right group.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue