Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74f63a commit 6e98f33Copy full SHA for 6e98f33
1 file changed
Misc/python-mode.el
@@ -563,7 +563,8 @@ filter."
563
(progn
564
(require 'shell)
565
(switch-to-buffer-other-window
566
- (make-shell "Python" py-python-command))))
+ (apply (if (boundp 'make-shell) 'make-shell 'make-comint)
567
+ "Python" py-python-command nil))))
568
(make-local-variable 'shell-prompt-pattern)
569
(setq shell-prompt-pattern "^>>> \\|^\\.\\.\\. ")
570
(set-process-filter (get-buffer-process (current-buffer))
0 commit comments