diff options
| -rw-r--r-- | lisp/help-fns.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index a1d121c457f..f5c7eb30c8c 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -614,9 +614,9 @@ FILE is the file where FUNCTION was probably defined." | |||
| 614 | (autoload-do-load real-def)) | 614 | (autoload-do-load real-def)) |
| 615 | 615 | ||
| 616 | (help-fns--key-bindings function) | 616 | (help-fns--key-bindings function) |
| 617 | (with-current-buffer standard-output | 617 | (let ((doc (help-fns--signature function doc-raw sig-key |
| 618 | (let ((doc (help-fns--signature function doc-raw sig-key | 618 | real-function nil))) |
| 619 | real-function nil))) | 619 | (with-current-buffer standard-output |
| 620 | (run-hook-with-args 'help-fns-describe-function-functions function) | 620 | (run-hook-with-args 'help-fns-describe-function-functions function) |
| 621 | (insert "\n" | 621 | (insert "\n" |
| 622 | (or doc "Not documented.")))))))) | 622 | (or doc "Not documented.")))))))) |