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 f15ed7e707c..cc7897accb6 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-04-14 Andrew Cohen <cohen@bu.edu> | ||
| 2 | |||
| 3 | * nnir.el (nnir-request-set-mark): Make sure we are in the right | ||
| 4 | group. | ||
| 5 | |||
| 1 | 2013-04-12 Katsumi Yamaoka <yamaoka@jpl.org> | 6 | 2013-04-12 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 7 | ||
| 3 | * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles | 8 | * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles |
diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el index 5d244a019cb..2fa6b600ac1 100644 --- a/lisp/gnus/nnir.el +++ b/lisp/gnus/nnir.el | |||
| @@ -837,6 +837,7 @@ skips all prompting." | |||
| 837 | (gnus-request-update-mark artgroup artnumber mark))) | 837 | (gnus-request-update-mark artgroup artnumber mark))) |
| 838 | 838 | ||
| 839 | (deffoo nnir-request-set-mark (group actions &optional server) | 839 | (deffoo nnir-request-set-mark (group actions &optional server) |
| 840 | (nnir-possibly-change-group group server) | ||
| 840 | (let (mlist) | 841 | (let (mlist) |
| 841 | (dolist (action actions) | 842 | (dolist (action actions) |
| 842 | (destructuring-bind (range action marks) action | 843 | (destructuring-bind (range action marks) action |
| @@ -853,7 +854,7 @@ skips all prompting." | |||
| 853 | 854 | ||
| 854 | 855 | ||
| 855 | (deffoo nnir-request-update-info (group info &optional server) | 856 | (deffoo nnir-request-update-info (group info &optional server) |
| 856 | (nnir-possibly-change-group group) | 857 | (nnir-possibly-change-group group server) |
| 857 | ;; clear out all existing marks. | 858 | ;; clear out all existing marks. |
| 858 | (gnus-info-set-marks info nil) | 859 | (gnus-info-set-marks info nil) |
| 859 | (gnus-info-set-read info nil) | 860 | (gnus-info-set-read info nil) |