From: Lars Ingebrigtsen Date: Tue, 15 Mar 2022 11:44:50 +0000 (+0100) Subject: Fix byte-code button in help--describe-command X-Git-Tag: emacs-29.0.90~1931^2~1116 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=55bcad776de9b7ca0047c78229390a4aa11a82ca;p=emacs.git Fix byte-code button in help--describe-command * lisp/help.el (help--describe-command): Fix byte-code button (bug#24235). --- diff --git a/lisp/help.el b/lisp/help.el index d60b5867792..f1a617f8500 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -1388,7 +1388,8 @@ Return nil if the key sequence is too long." ((keymapp definition) (insert "Prefix Command\n")) ((byte-code-function-p definition) - (insert "[%s]\n" (buttonize "byte-code" #'disassemble definition))) + (insert (format "[%s]\n" + (buttonize "byte-code" #'disassemble definition)))) ((and (consp definition) (memq (car definition) '(closure lambda))) (insert (format "[%s]\n"