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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2;p=thirdparty%2FPython%2Fcpython.git (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 8789c66c383a..9d5f514b7efe 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 "^>>> \\|^\\.\\.\\. ")