Run gnus-summary-prepare-exit-hook after flags have been updated

* lisp/gnus/gnus-sum.el (gnus-summary-exit): Gnus message flags
must be set before expiration, not afterwards (bug#21071).
This commit is contained in:
Nikolaus Rath 2019-09-27 18:03:10 +02:00 committed by Lars Ingebrigtsen
parent c86d8d03fb
commit 9ba907a5fb

View file

@ -7290,7 +7290,6 @@ If FORCE (the prefix), also save the .newsrc file(s)."
(gnus-score-adaptive))
(when gnus-use-scoring
(gnus-score-save)))
(gnus-run-hooks 'gnus-summary-prepare-exit-hook)
(when gnus-use-cache
(gnus-cache-possibly-remove-articles)
(gnus-cache-save-buffers))
@ -7307,6 +7306,7 @@ If FORCE (the prefix), also save the .newsrc file(s)."
(unless quit-config
(gnus-run-hooks 'gnus-exit-group-hook)
(gnus-summary-update-info))
(gnus-run-hooks 'gnus-summary-prepare-exit-hook)
(gnus-close-group group)
;; Make sure where we were, and go to next newsgroup.
(when (gnus-buffer-live-p gnus-group-buffer)