aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorFabián Ezequiel Gallina2015-02-09 23:53:11 -0300
committerFabián Ezequiel Gallina2015-02-09 23:53:11 -0300
commit880415a6a6ec90bd9bf8467a43a41973f78260b3 (patch)
tree9fb53fd4d8f380a38cf00a247e55593505d054ad /lisp/progmodes/python.el
parent859e865e937dcc2bbd1fbbe0df3dadb16f4d5efe (diff)
downloademacs-880415a6a6ec90bd9bf8467a43a41973f78260b3.tar.gz
emacs-880415a6a6ec90bd9bf8467a43a41973f78260b3.zip
python.el: Fix typo in eldoc initialization for Emacs 24.x
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 1889affbf6f..be747d008dd 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -4709,8 +4709,8 @@ returned as is."
4709 4709
4710 (if (null eldoc-documentation-function) 4710 (if (null eldoc-documentation-function)
4711 ;; Emacs<25 4711 ;; Emacs<25
4712 (setq (make-local-variable 'eldoc-documentation-function) 4712 (set (make-local-variable 'eldoc-documentation-function)
4713 #'python-eldoc-function) 4713 #'python-eldoc-function)
4714 (add-function :before-until (local 'eldoc-documentation-function) 4714 (add-function :before-until (local 'eldoc-documentation-function)
4715 #'python-eldoc-function)) 4715 #'python-eldoc-function))
4716 4716