From 0d224e82411d9471f03fc339890d6a2952b5e239 Mon Sep 17 00:00:00 2001 From: Michael Welsh Duggan Date: Sun, 23 Nov 2014 18:34:28 -0500 Subject: [PATCH] Avoid messing up buffer list when starting gud (Bug#22374) * lisp/progmodes/gud.el (gud-common-init): Use `display-buffer' instead of `switch-to-buffer'. --- lisp/progmodes/gud.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index de398350bd2..6826674a942 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -2605,7 +2605,12 @@ comint mode, which see." file-subst))) (filepart (and file-word (concat "-" (file-name-nondirectory file)))) (existing-buffer (get-buffer (concat "*gud" filepart "*")))) - (switch-to-buffer (concat "*gud" filepart "*")) + (select-window + (display-buffer + (get-buffer-create (concat "*gud" filepart "*")) + '(display-buffer-reuse-window + display-buffer-in-previous-window + display-buffer-same-window display-buffer-pop-up-window))) (when (and existing-buffer (get-buffer-process existing-buffer)) (error "This program is already being debugged")) ;; Set the dir, in case the buffer already existed with a different dir. -- 2.39.5