emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 880415a: python.el: Fix typo in eldoc initializatio


From: Fabián Ezequiel Gallina
Subject: [Emacs-diffs] master 880415a: python.el: Fix typo in eldoc initialization for Emacs 24.x
Date: Tue, 10 Feb 2015 02:53:17 +0000

branch: master
commit 880415a6a6ec90bd9bf8467a43a41973f78260b3
Author: Fabián Ezequiel Gallina <address@hidden>
Commit: Fabián Ezequiel Gallina <address@hidden>

    python.el: Fix typo in eldoc initialization for Emacs 24.x
---
 lisp/progmodes/python.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 1889aff..be747d0 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -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))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]