]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't call undefined function elisp-eldoc-documentation-function (bug#42493)
authorTassilo Horn <tsdh@gnu.org>
Thu, 23 Jul 2020 20:05:26 +0000 (22:05 +0200)
committerTassilo Horn <tsdh@gnu.org>
Thu, 23 Jul 2020 20:05:26 +0000 (22:05 +0200)
* lisp/ielm.el (inferior-emacs-lisp-mode): Add
`elisp-eldoc-var-docstring' and `elisp-eldoc-funcall' as
`eldoc-documentation-functions' instead of the undefined
elisp-eldoc-documentation-function (bug#42493).

lisp/ielm.el

index 47c5158ce4123ae720d77f7b07a00af1d7f27eaa..b3654b91d371bd6b42f7a76df459f2c81a17e6ea 100644 (file)
@@ -537,7 +537,9 @@ Customized bindings may be defined in `ielm-map', which currently contains:
        '(comint-replace-by-expanded-history
          ielm-complete-filename elisp-completion-at-point))
   (add-hook 'eldoc-documentation-functions
-            #'elisp-eldoc-documentation-function nil t)
+            #'elisp-eldoc-var-docstring nil t)
+  (add-hook 'eldoc-documentation-functions
+            #'elisp-eldoc-funcall nil t)
   (set (make-local-variable 'ielm-prompt-internal) ielm-prompt)
   (set (make-local-variable 'comint-prompt-read-only) ielm-prompt-read-only)
   (setq comint-get-old-input 'ielm-get-old-input)