From: Barry Warsaw Date: Tue, 23 Jan 1996 22:52:02 +0000 (+0000) Subject: (py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp. X-Git-Tag: v1.4b1~394 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2;p=python (py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp. --- diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 8789c66c38..9d5f514b7e 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 "^>>> \\|^\\.\\.\\. ")