From: Andrea Corallo Date: Sat, 3 Oct 2020 19:54:27 +0000 (+0200) Subject: * Fix function description message for native compiled lisp functions X-Git-Tag: emacs-28.0.90~2727^2~400 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=72682958683174b5133b09fd9ac256727e4d88a7;p=emacs.git * Fix function description message for native compiled lisp functions * lisp/help-fns.el (help-fns-function-description-header): Fix message. --- 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"