From: Lars Ingebrigtsen Date: Fri, 13 Apr 2018 19:58:25 +0000 (+0200) Subject: Further tweak point placement on gnus-summary-select-article-buffer X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~19^2~5626 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0eb68feed44a5c58931eb0cda19df95164958772;p=emacs.git 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. --- 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."