]> git.eshelyaron.com Git - emacs.git/commitdiff
Do window configuration change before killing Gnus buffers on exit
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 19 Jul 2020 13:46:17 +0000 (15:46 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 19 Jul 2020 13:46:17 +0000 (15:46 +0200)
* lisp/gnus/gnus-sum.el (gnus-summary-exit): Do window
configuration changes before killing off the summary buffer, so
that the window conf machinery can return to a group-only
configuration (bug#40069).

lisp/gnus/gnus-sum.el

index 1b0220a0f06a9a7458430619f41bcbade02a01b1..c5036c32d574f8b89bb148813c2ad05b96ca81ee 100644 (file)
@@ -7332,6 +7332,8 @@ If FORCE (the prefix), also save the .newsrc file(s)."
       (gnus-group-next-unread-group 1))
     (setq group-point (point))
     (gnus-article-stop-animations)
+    (unless leave-hidden
+      (gnus-configure-windows 'group 'force))
     (if temporary
        nil                             ;Nothing to do.
       (set-buffer buf)
@@ -7351,8 +7353,6 @@ 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)))