summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2018-04-17 20:09:28 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2018-04-17 20:09:28 +0200
commit01a32a0f97134aca41df6895d23bcfcc51916b21 (patch)
tree3e8ec95e458438d9fb5be900bc6ba6718c69f449 /lisp
parentc90984250b31fa0d33064e85c3a243e6018f9592 (diff)
downloademacs-01a32a0f97134aca41df6895d23bcfcc51916b21.tar.gz
emacs-01a32a0f97134aca41df6895d23bcfcc51916b21.tar.bz2
emacs-01a32a0f97134aca41df6895d23bcfcc51916b21.zip
(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.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/gnus-sum.el2
1 files changed, 1 insertions, 1 deletions
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)))))