mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-17 17:58:46 +00:00
Place point consistently in the Gnus group buffer on exit
* lisp/gnus/gnus-sum.el (gnus-summary-exit): Place point correctly when exiting with `q' (and the like) from the article buffer when only the article buffer is displayed (bug#31195). This is apparently yet another fall-out from the "preserve-visible-point- in-windows" patches of yesteryear...
This commit is contained in:
parent
950d6cc744
commit
1d5d23a9f6
@ -7286,12 +7286,13 @@ If FORCE (the prefix), also save the .newsrc file(s)."
|
||||
(if quit-config
|
||||
(gnus-handle-ephemeral-exit quit-config)
|
||||
(goto-char group-point)
|
||||
(unless leave-hidden
|
||||
(gnus-configure-windows 'group 'force))
|
||||
;; If gnus-group-buffer is already displayed, make sure we also move
|
||||
;; the cursor in the window that displays it.
|
||||
(let ((win (get-buffer-window (current-buffer) 0)))
|
||||
(if win (set-window-point win (point))))
|
||||
(unless leave-hidden
|
||||
(gnus-configure-windows 'group 'force)))
|
||||
(goto-char group-point)
|
||||
(if win (set-window-point win (point)))))
|
||||
|
||||
;; If we have several article buffers, we kill them at exit.
|
||||
(unless single-article-buffer
|
||||
|
Loading…
Reference in New Issue
Block a user