]> git.eshelyaron.com Git - emacs.git/commitdiff
python.el: Fix typo in eldoc initialization for Emacs 24.x
authorFabián Ezequiel Gallina <fgallina@gnu.org>
Tue, 10 Feb 2015 02:53:11 +0000 (23:53 -0300)
committerFabián Ezequiel Gallina <fgallina@gnu.org>
Tue, 10 Feb 2015 02:53:11 +0000 (23:53 -0300)
lisp/progmodes/python.el

index 1889affbf6f66d2a3a6368ea4e6fe21ec752fbef..be747d008dd1e144419038df4adf0131c05127ae 100644 (file)
@@ -4709,8 +4709,8 @@ returned as is."
 
   (if (null eldoc-documentation-function)
       ;; Emacs<25
-      (setq (make-local-variable 'eldoc-documentation-function)
-            #'python-eldoc-function)
+      (set (make-local-variable 'eldoc-documentation-function)
+           #'python-eldoc-function)
     (add-function :before-until (local 'eldoc-documentation-function)
                   #'python-eldoc-function))