1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

(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.
This commit is contained in:
Lars Ingebrigtsen 2018-04-17 20:09:28 +02:00
parent c90984250b
commit 01a32a0f97

View File

@ -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)))))