]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/help.el (help-for-help): Fix thinko.
authorStefan Kangas <stefan@marxist.se>
Sun, 25 Apr 2021 11:57:32 +0000 (13:57 +0200)
committerStefan Kangas <stefan@marxist.se>
Sun, 25 Apr 2021 11:57:47 +0000 (13:57 +0200)
lisp/help.el

index 8234bbd34b6bd345b48835a8dd067861060f0067..e143501081911f6d4388a2a5e2b723e2d3601fff 100644 (file)
@@ -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-map>\\[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")