* gnus-sum.el (gnus-summary-expire-articles): Functions registered to

the gnus-summary-article-expire-hook should be told where the function
is going. In particular, the Gnus registry might want to know.
This commit is contained in:
Eric Abrahamsen 2014-08-06 00:33:37 +00:00 committed by Katsumi Yamaoka
parent 9e8376863e
commit 345eec290b
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2014-08-05 Eric Abrahamsen <eric@ericabrahamsen.net>
* gnus-sum.el (gnus-summary-expire-articles): Functions registered to
the gnus-summary-article-expire-hook should be told where the function
is going. In particular, the Gnus registry might want to know.
2014-07-31 Tassilo Horn <tsdh@gnu.org>
* gnus-msg.el (gnus-inews-insert-gcc): Allow `gcc-self' to be a list of

View file

@ -10449,7 +10449,10 @@ This will be the case if the article has both been mailed and posted."
(gnus-data-header
(assoc article (gnus-data-list nil)))
gnus-newsgroup-name
nil
(if (fboundp nnmail-expiry-target)
(funcall nnmail-expiry-target
gnus-newsgroup-name)
nnmail-expiry-target)
nil)))))))
(gnus-message 6 "Expiring articles...done")))))