From 72682958683174b5133b09fd9ac256727e4d88a7 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sat, 3 Oct 2020 21:54:27 +0200 Subject: [PATCH] * Fix function description message for native compiled lisp functions * lisp/help-fns.el (help-fns-function-description-header): Fix message. --- lisp/help-fns.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 9fee156f18f..8287fab3152 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -737,7 +737,7 @@ Returns a list of the form (REAL-FUNCTION DEF ALIASED REAL-DEF)." (aliased (format-message "an alias for `%s'" real-def)) ((subr-native-elisp-p def) - "native compiled Lisp function") + (concat beg "native compiled Lisp function")) ((subrp def) (concat beg (if (eq 'unevalled (cdr (subr-arity def))) "special form" -- 2.39.5