]> git.eshelyaron.com Git - emacs.git/commitdiff
Use pop-to-buffer-same-window for shell
authorTheodor Thornhill <theo@thornhill.no>
Sun, 21 Mar 2021 07:02:28 +0000 (08:02 +0100)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 21 Mar 2021 12:40:32 +0000 (14:40 +0200)
* lisp/progmodes/project.el (project-shell): Behave the same way as
'M-x project-eshell'.
* lisp/shell.el (shell): Behave the same way as 'M-x eshell'.
* etc/NEWS: Add news entry describing the change.
* lisp/tutorial.el: Use lexical-binding.

etc/NEWS
lisp/progmodes/project.el
lisp/shell.el

index c602166397686bdee45bfd9ed83940c4476987a3..49a4bb8106f899019b22c80f75fb284b417f77d7 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2300,6 +2300,10 @@ since the latter uses 'M-s' as a prefix key of the search prefix map.
 ** 'vc-print-branch-log' shows the change log for BRANCH from its root
 directory instead of the default directory.
 
+---
+** 'project-shell' and 'shell' now use 'pop-to-buffer-same-window'.
+This is to keep the same behavior as Eshell.
+
 \f
 * Incompatible Lisp Changes in Emacs 28.1
 
index bd552c917ac483e0b1bb7a19a056514608e2affc..b6a886f731998250fc82f24b5311a80063e7846f 100644 (file)
@@ -911,7 +911,7 @@ if one already exists."
                    "-shell*"))
          (shell-buffer (get-buffer default-project-shell-name)))
     (if (and shell-buffer (not current-prefix-arg))
-        (pop-to-buffer shell-buffer)
+        (pop-to-buffer-same-window shell-buffer)
       (shell (generate-new-buffer-name default-project-shell-name)))))
 
 ;;;###autoload
index 53f5d0b6f1c5b4e21d042555a3f44385033534b9..7f4ca765477378c85c181f10c675e53bd822dc7a 100644 (file)
@@ -743,7 +743,7 @@ Make the shell buffer the current buffer, and return it.
                  (current-buffer)))
   ;; The buffer's window must be correctly set when we call comint
   ;; (so that comint sets the COLUMNS env var properly).
-  (pop-to-buffer buffer)
+  (pop-to-buffer-same-window buffer)
 
   (with-connection-local-variables
    ;; On remote hosts, the local `shell-file-name' might be useless.