From c5442adaa68d1ae866424a06d55c0734f172946d Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Wed, 25 Jan 2017 20:30:44 +0100 Subject: [PATCH] Don't mark articles in Gnus as displayed when they aren't * lisp/gnus/gnus-sum.el (gnus-summary-read-group-1): Don't mark any articles as selected if we're not selecting any articles (bug#18255). --- lisp/gnus/gnus-sum.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 72e902a11f8..624833420d7 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -4037,6 +4037,9 @@ If SELECT-ARTICLES, only select those articles from GROUP." (when kill-buffer (gnus-kill-or-deaden-summary kill-buffer)) (gnus-summary-auto-select-subject) + ;; Don't mark any articles as selected if we haven't done that. + (when no-article + (setq overlay-arrow-position nil)) ;; Show first unread article if requested. (if (and (not no-article) (not no-display) -- 2.39.5