From 13a248f7e7e57b7df736a7c101d8e1690ae755ac Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 25 Apr 2021 13:57:32 +0200 Subject: [PATCH] ; * lisp/help.el (help-for-help): Fix thinko. --- lisp/help.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/help.el b/lisp/help.el index 8234bbd34b6..e1435010819 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -239,7 +239,7 @@ Do not call this in the scope of `with-help-window'." (help--key-description-fontified "\C-s") " to search, or \\\\[help-quit] to exit.)" (help--for-help-make-sections - '(("Commands, Keys and Functions" + `(("Commands, Keys and Functions" ("describe-mode" "Show help for current major and minor modes and their commands") ("describe-bindings" "Show all key bindings") @@ -273,8 +273,8 @@ Do not call this in the scope of `with-help-window'." ("help-with-tutorial" "Start the Emacs tutorial") ("view-echo-area-messages" "Show recent messages (from echo area)") - ("view-lossage" (format "Show last %d input keystrokes (lossage)" - (lossage-size))) + ("view-lossage" ,(format "Show last %d input keystrokes (lossage)" + (lossage-size))) ("display-local-help" "Show local help at point")) ("Miscellaneous" ("about-emacs" "About Emacs") -- 2.39.5