From: Basil L. Contovounesios Date: Tue, 7 May 2019 12:46:22 +0000 (+0100) Subject: Fix gnus-summary-expand-window placement of point X-Git-Tag: emacs-27.0.90~2867 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9408e36b84b8e81dd9f4d1465c4f20f125d4bd06;p=emacs.git 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) --- 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.