mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
(py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp.
This commit is contained in:
parent
996e6dc959
commit
9fbcc6a6c2
@ -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 "^>>> \\|^\\.\\.\\. ")
|
||||
|
Loading…
Reference in New Issue
Block a user