From 0eb68feed44a5c58931eb0cda19df95164958772 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Fri, 13 Apr 2018 21:58:25 +0200 Subject: [PATCH] Further tweak point placement on gnus-summary-select-article-buffer * lisp/gnus/gnus-sum.el (gnus-summary-select-article-buffer): Place point in the empty space between headers and body. --- lisp/gnus/gnus-sum.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 0a7b233a480..aed5aaf01eb 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -7071,7 +7071,8 @@ 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. (when (bobp) - (article-goto-body)))) + (article-goto-body) + (forward-char -1)))) (defun gnus-summary-universal-argument (arg) "Perform any operation on all articles that are process/prefixed." -- 2.11.4.GIT