From: Eli Zaretskii Date: Sat, 21 Jan 2006 11:48:25 +0000 (+0000) Subject: (python-mode) : Pass nil as the first arg to run-python. X-Git-Tag: emacs-pretest-22.0.90~4651 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=13b0ddbd62d774590caf467467a840fc7a80ac6d;p=emacs.git (python-mode) : Pass nil as the first arg to run-python. --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 6ed2e39e4e8..0ed58fd558e 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1743,7 +1743,7 @@ lines count as headers. (set (make-local-variable 'eldoc-documentation-function) #'python-eldoc-function) (add-hook 'eldoc-mode-hook - '(lambda () (run-python 0 t)) nil t) ; need it running + '(lambda () (run-python nil t)) nil t) ; need it running (if (featurep 'hippie-exp) (set (make-local-variable 'hippie-expand-try-functions-list) (cons 'python-try-complete hippie-expand-try-functions-list)))