From 9408e36b84b8e81dd9f4d1465c4f20f125d4bd06 Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Tue, 7 May 2019 13:46:22 +0100 Subject: [PATCH] Fix gnus-summary-expand-window placement of point * lisp/gnus/gnus-win.el (gnus-configure-frame): Replace switch-to-buffer with pop-to-buffer-same-window to avoid messing with point. (bug#35613) --- lisp/gnus/gnus-win.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/gnus-win.el b/lisp/gnus/gnus-win.el index a992fe731cb..40c5b42d45f 100644 --- a/lisp/gnus/gnus-win.el +++ b/lisp/gnus/gnus-win.el @@ -285,7 +285,7 @@ See the Gnus manual for an explanation of the syntax used.") ;; from a hard-dedicated frame, it creates (and ;; configures) a new frame, leaving the dedicated frame alone. (pop-to-buffer buf)) - (t (switch-to-buffer buf))))) + (t (pop-to-buffer-same-window buf))))) (when (memq 'frame-focus split) (setq gnus-window-frame-focus window)) ;; We return the window if it has the `point' spec. -- 2.39.5