From 9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 23 Jan 1996 22:52:02 +0000 Subject: [PATCH] (py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp. --- Misc/python-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 8789c66c383..9d5f514b7ef 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -590,7 +590,7 @@ filter." (progn (require 'shell) (switch-to-buffer-other-window - (apply (if (boundp 'make-shell) 'make-shell 'make-comint) + (apply (if (fboundp 'make-shell) 'make-shell 'make-comint) "Python" py-python-command nil)))) (make-local-variable 'shell-prompt-pattern) (setq shell-prompt-pattern "^>>> \\|^\\.\\.\\. ")