(py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp.

This commit is contained in:
Barry Warsaw 1996-01-23 22:52:02 +00:00
parent 996e6dc959
commit 9fbcc6a6c2
1 changed files with 1 additions and 1 deletions

View File

@ -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 "^>>> \\|^\\.\\.\\. ")