Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9fbcc6a

Browse files
committed
(py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp.
1 parent 996e6dc commit 9fbcc6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Misc/python-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ filter."
590590
(progn
591591
(require 'shell)
592592
(switch-to-buffer-other-window
593-
(apply (if (boundp 'make-shell) 'make-shell 'make-comint)
593+
(apply (if (fboundp 'make-shell) 'make-shell 'make-comint)
594594
"Python" py-python-command nil))))
595595
(make-local-variable 'shell-prompt-pattern)
596596
(setq shell-prompt-pattern "^>>> \\|^\\.\\.\\. ")

0 commit comments

Comments
 (0)