summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1996-01-23 22:52:02 (GMT)
committerBarry Warsaw <barry@python.org>1996-01-23 22:52:02 (GMT)
commit9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2 (patch)
tree2a8346f00e621180d9ab1abcb45f34a8ae7e9ebf /Misc
parent996e6dc95919b19f628ac69e3e8a0483e18ef3fe (diff)
downloadcpython-9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2.zip
cpython-9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2.tar.gz
cpython-9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2.tar.bz2
(py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/python-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 8789c66..9d5f514 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 "^>>> \\|^\\.\\.\\. ")