Kaydet (Commit) 9fbcc6a6 authored tarafından Barry Warsaw's avatar Barry Warsaw

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

üst 996e6dc9
......@@ -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 "^>>> \\|^\\.\\.\\. ")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment