1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 15:21:51 -08:00

python.el: Fix typo in eldoc initialization for Emacs 24.x

This commit is contained in:
Fabián Ezequiel Gallina 2015-02-09 23:53:11 -03:00
parent 859e865e93
commit 880415a6a6

View 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))