diff options
| -rw-r--r-- | lisp/help-fns.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 1966193d1a7..962a5038453 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -710,7 +710,10 @@ the C sources, too." | |||
| 710 | (high-doc (cdr high))) | 710 | (high-doc (cdr high))) |
| 711 | (unless (and (symbolp function) | 711 | (unless (and (symbolp function) |
| 712 | (get function 'reader-construct)) | 712 | (get function 'reader-construct)) |
| 713 | (insert high-usage "\n")) | 713 | (insert "Signature: " high-usage "\n\n") |
| 714 | (when (and (featurep 'native-compile) | ||
| 715 | (subr-native-elisp-p (symbol-function function))) | ||
| 716 | (insert (format "Type: %s\n" (subr-type (symbol-function function)))))) | ||
| 714 | (fill-region fill-begin (point)) | 717 | (fill-region fill-begin (point)) |
| 715 | high-doc))))) | 718 | high-doc))))) |
| 716 | 719 | ||