]> granicus.if.org Git - python/commitdiff
(py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp.
authorBarry Warsaw <barry@python.org>
Tue, 23 Jan 1996 22:52:02 +0000 (22:52 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 23 Jan 1996 22:52:02 +0000 (22:52 +0000)
Misc/python-mode.el

index 8789c66c383af9160e6d1317cffa3730940e5d28..9d5f514b7efe67bfc09f349cb6817d073fa615ce 100644 (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 "^>>> \\|^\\.\\.\\. ")