diff options
author | Barry Warsaw <barry@python.org> | 1996-01-23 22:52:02 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1996-01-23 22:52:02 (GMT) |
commit | 9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2 (patch) | |
tree | 2a8346f00e621180d9ab1abcb45f34a8ae7e9ebf /Misc/python-mode.el | |
parent | 996e6dc95919b19f628ac69e3e8a0483e18ef3fe (diff) | |
download | cpython-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/python-mode.el')
-rw-r--r-- | Misc/python-mode.el | 2 |
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 "^>>> \\|^\\.\\.\\. ") |