diff options
Diffstat (limited to 'lisp/progmodes/elisp-mode.el')
-rw-r--r-- | lisp/progmodes/elisp-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 7e7ea6aeb9e..537b9484bd5 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el @@ -1826,8 +1826,8 @@ or elsewhere, return a 1-line docstring." (eq 'function (aref elisp--eldoc-last-data 2))) (aref elisp--eldoc-last-data 1)) (t - (let* ((advertised (gethash (indirect-function sym) - advertised-signature-table t)) + (let* ((advertised (get-advertised-calling-convention + (indirect-function sym))) doc (args (cond |