1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

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.
This commit is contained in:
Lars Ingebrigtsen 2018-04-13 21:58:25 +02:00
parent 9f5f26c2b6
commit 0eb68feed4

View File

@ -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."