From 6e98f3350f2ea838a487bde43115923477c74d49 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 5 Jul 1995 22:06:50 +0000 Subject: (py-shell): cope with make-comint instead of make-shell --- Misc/python-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 3c338d3..0b6383b 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -563,7 +563,8 @@ filter." (progn (require 'shell) (switch-to-buffer-other-window - (make-shell "Python" py-python-command)))) + (apply (if (boundp 'make-shell) 'make-shell 'make-comint) + "Python" py-python-command nil)))) (make-local-variable 'shell-prompt-pattern) (setq shell-prompt-pattern "^>>> \\|^\\.\\.\\. ") (set-process-filter (get-buffer-process (current-buffer)) -- cgit v0.12