diff options
| author | Eric Abrahamsen | 2014-08-06 00:33:37 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2014-08-06 00:33:37 +0000 |
| commit | 345eec290b223e27bafb41ac9e6b676c7f149a68 (patch) | |
| tree | 89297956da9751756238a5e27edca330fbe29f80 | |
| parent | 9e8376863e9338f0b34e34fa6c853b0d0b0d6f2b (diff) | |
| download | emacs-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/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 5 |
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 @@ | |||
| 1 | 2014-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 | |||
| 1 | 2014-07-31 Tassilo Horn <tsdh@gnu.org> | 7 | 2014-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 | ||