From 880415a6a6ec90bd9bf8467a43a41973f78260b3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fabi=C3=A1n=20Ezequiel=20Gallina?= Date: Mon, 9 Feb 2015 23:53:11 -0300 Subject: [PATCH] python.el: Fix typo in eldoc initialization for Emacs 24.x --- lisp/progmodes/python.el | 4 ++-- 1 file 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." (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)) -- 2.11.4.GIT