From 01a32a0f97134aca41df6895d23bcfcc51916b21 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Tue, 17 Apr 2018 20:09:28 +0200 Subject: [PATCH] (gnus-summary-select-article-buffer): Further point placing tweak * lisp/gnus/gnus-sum.el (gnus-summary-select-article-buffer): Further tweak for the previous point-placing tweak. --- lisp/gnus/gnus-sum.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 596afd15525..4c54ac59d67 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -7073,7 +7073,7 @@ buffer." (select-window (get-buffer-window gnus-article-buffer)) ;; If we've just selected the message, place point at the start of ;; the body because that's probably where we want to be. - (if (not (bobp)) + (if (not (= point (point-min))) (goto-char point) (article-goto-body) (forward-char -1)))))