From: Lars Ingebrigtsen Date: Tue, 17 Apr 2018 18:09:28 +0000 (+0200) Subject: (gnus-summary-select-article-buffer): Further point placing tweak X-Git-Tag: emacs-27.0.90~5156 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=01a32a0f97134aca41df6895d23bcfcc51916b21;p=emacs.git (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. --- 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)))))