emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 13a248f: ; * lisp/help.el (help-for-help): Fix thinko.


From: Stefan Kangas
Subject: master 13a248f: ; * lisp/help.el (help-for-help): Fix thinko.
Date: Sun, 25 Apr 2021 07:57:54 -0400 (EDT)

branch: master
commit 13a248f7e7e57b7df736a7c101d8e1690ae755ac
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    ; * 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 8234bbd..e143501 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-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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]