aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorFabián Ezequiel Gallina2014-12-26 17:14:18 -0300
committerFabián Ezequiel Gallina2014-12-26 17:14:18 -0300
commit8cf42182b8da79bb4a2f2f704fa0d627304f5165 (patch)
tree8ef794c18cb11d13b7ffd9a6963d0b9f85dc231e /lisp/progmodes/python.el
parent807c3413c478be964f24b5ecc44712ce3358001e (diff)
downloademacs-8cf42182b8da79bb4a2f2f704fa0d627304f5165.tar.gz
emacs-8cf42182b8da79bb4a2f2f704fa0d627304f5165.zip
Revert "Prevent Python process shell buffer to pop twice."
This reverts commit 4256626a7ac486446f4dea9c12df3057053825a7.
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 35e24e14e1c..47c6a90bbde 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -2860,7 +2860,7 @@ If DELETE is non-nil, delete the file afterwards."
2860(defun python-shell-switch-to-shell () 2860(defun python-shell-switch-to-shell ()
2861 "Switch to inferior Python process buffer." 2861 "Switch to inferior Python process buffer."
2862 (interactive) 2862 (interactive)
2863 (process-buffer (python-shell-get-or-create-process)) t) 2863 (pop-to-buffer (process-buffer (python-shell-get-or-create-process)) t))
2864 2864
2865(defun python-shell-send-setup-code () 2865(defun python-shell-send-setup-code ()
2866 "Send all setup code for shell. 2866 "Send all setup code for shell.