diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnir.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 29d47ab4226..c0b009773c8 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * nnir.el (nnir-request-update-mark): Don't try to update the source | ||
| 4 | group if we can't find it (bug#16611). | ||
| 5 | |||
| 1 | 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org> | 6 | 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * nnimap.el (nnimap-transform-headers): Fix Davmail header parsing. | 8 | * nnimap.el (nnimap-transform-headers): Fix Davmail header parsing. |
diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el index 7088bbb8029..404cab114da 100644 --- a/lisp/gnus/nnir.el +++ b/lisp/gnus/nnir.el | |||
| @@ -834,7 +834,8 @@ skips all prompting." | |||
| 834 | (deffoo nnir-request-update-mark (group article mark) | 834 | (deffoo nnir-request-update-mark (group article mark) |
| 835 | (let ((artgroup (nnir-article-group article)) | 835 | (let ((artgroup (nnir-article-group article)) |
| 836 | (artnumber (nnir-article-number article))) | 836 | (artnumber (nnir-article-number article))) |
| 837 | (gnus-request-update-mark artgroup artnumber mark))) | 837 | (when (and artgroup artnumber) |
| 838 | (gnus-request-update-mark artgroup artnumber mark)))) | ||
| 838 | 839 | ||
| 839 | (deffoo nnir-request-set-mark (group actions &optional server) | 840 | (deffoo nnir-request-set-mark (group actions &optional server) |
| 840 | (nnir-possibly-change-group group server) | 841 | (nnir-possibly-change-group group server) |