aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Abrahamsen2014-08-06 00:33:37 +0000
committerKatsumi Yamaoka2014-08-06 00:33:37 +0000
commit345eec290b223e27bafb41ac9e6b676c7f149a68 (patch)
tree89297956da9751756238a5e27edca330fbe29f80
parent9e8376863e9338f0b34e34fa6c853b0d0b0d6f2b (diff)
downloademacs-345eec290b223e27bafb41ac9e6b676c7f149a68.tar.gz
emacs-345eec290b223e27bafb41ac9e6b676c7f149a68.zip
* 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.
-rw-r--r--lisp/gnus/ChangeLog6
-rw-r--r--lisp/gnus/gnus-sum.el5
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 05309187548..832950772d2 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,9 @@
12014-08-05 Eric Abrahamsen <eric@ericabrahamsen.net>
2
3 * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
4 the gnus-summary-article-expire-hook should be told where the function
5 is going. In particular, the Gnus registry might want to know.
6
12014-07-31 Tassilo Horn <tsdh@gnu.org> 72014-07-31 Tassilo Horn <tsdh@gnu.org>
2 8
3 * gnus-msg.el (gnus-inews-insert-gcc): Allow `gcc-self' to be a list of 9 * gnus-msg.el (gnus-inews-insert-gcc): Allow `gcc-self' to be a list of
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index c0e099ba3ca..4f061cd9f32 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -10449,7 +10449,10 @@ This will be the case if the article has both been mailed and posted."
10449 (gnus-data-header 10449 (gnus-data-header
10450 (assoc article (gnus-data-list nil))) 10450 (assoc article (gnus-data-list nil)))
10451 gnus-newsgroup-name 10451 gnus-newsgroup-name
10452 nil 10452 (if (fboundp nnmail-expiry-target)
10453 (funcall nnmail-expiry-target
10454 gnus-newsgroup-name)
10455 nnmail-expiry-target)
10453 nil))))))) 10456 nil)))))))
10454 (gnus-message 6 "Expiring articles...done"))))) 10457 (gnus-message 6 "Expiring articles...done")))))
10455 10458