emacs-diffs
[Top][All Lists]
Advanced

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

master 04266a2: Advertise PgUp/PgDn instead of SPC/DEL in help-for-help


From: Stefan Kangas
Subject: master 04266a2: Advertise PgUp/PgDn instead of SPC/DEL in help-for-help
Date: Fri, 30 Apr 2021 13:30:36 -0400 (EDT)

branch: master
commit 04266a2cacc0f0705d0d1abaada464b402cc7b07
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    Advertise PgUp/PgDn instead of SPC/DEL in help-for-help
    
    * lisp/help-macro.el (make-help-screen):
    * lisp/help.el (help-for-help): Advertise PgUp/PgDn instead of
    SPC/DEL.
---
 lisp/help-macro.el | 4 ++--
 lisp/help.el       | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/help-macro.el b/lisp/help-macro.el
index 7fe1fb6..132530d 100644
--- a/lisp/help-macro.el
+++ b/lisp/help-macro.el
@@ -168,9 +168,9 @@ and then returns."
                                              (point-max))
                                             ""
                                           (concat  ", or "
-                                                   
(help--key-description-fontified "\s") ; SPC
+                                                   
(help--key-description-fontified (kbd "<PageDown>"))
                                                    " or "
-                                                   
(help--key-description-fontified "\d") ; DEL
+                                                   
(help--key-description-fontified (kbd "<PageUp>"))
                                                    " to scroll"))))
                            char (aref key 0)))
 
diff --git a/lisp/help.el b/lisp/help.el
index 85312a4..bd671c3 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -233,9 +233,9 @@ Do not call this in the scope of `with-help-window'."
   (purecopy "Type a help option: [abcCdefFgiIkKlLmnprstvw.] C-[cdefmnoptw] or 
?")
   (concat
    "\(Type "
-   (help--key-description-fontified "\s") ; SPC
+   (help--key-description-fontified (kbd "<PageDown>"))
    " or "
-   (help--key-description-fontified "\d") ; DEL
+   (help--key-description-fontified (kbd "<PageUp>"))
    " to scroll, "
    (help--key-description-fontified "\C-s")
    " to search, or \\<help-map>\\[help-quit] to exit.)"



reply via email to

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