diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | 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 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 | ||