[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 01a32a0 2/3: (gnus-summary-select-article-buffer):
From: |
Lars Ingebrigtsen |
Subject: |
[Emacs-diffs] master 01a32a0 2/3: (gnus-summary-select-article-buffer): Further point placing tweak |
Date: |
Tue, 17 Apr 2018 14:34:33 -0400 (EDT) |
branch: master
commit 01a32a0f97134aca41df6895d23bcfcc51916b21
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>
(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.
---
lisp/gnus/gnus-sum.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 596afd1..4c54ac5 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)))))