Mercurial > emacs
changeset 68311:8db317ab20fc
(python-mode) <eldoc-mode-hook>: Pass nil as the first arg to run-python.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 21 Jan 2006 11:48:25 +0000 |
parents | 7badc603f7ab |
children | 9670873b887a |
files | lisp/progmodes/python.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/python.el Sat Jan 21 11:39:05 2006 +0000 +++ b/lisp/progmodes/python.el Sat Jan 21 11:48:25 2006 +0000 @@ -1743,7 +1743,7 @@ (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)))