From 04266a2cacc0f0705d0d1abaada464b402cc7b07 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Fri, 30 Apr 2021 19:30:28 +0200 Subject: [PATCH] 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 7fe1fb6c3d0..132530deb3b 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 "")) " or " - (help--key-description-fontified "\d") ; DEL + (help--key-description-fontified (kbd "")) " to scroll")))) char (aref key 0))) diff --git a/lisp/help.el b/lisp/help.el index 85312a411ad..bd671c3d16b 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 "")) " or " - (help--key-description-fontified "\d") ; DEL + (help--key-description-fontified (kbd "")) " to scroll, " (help--key-description-fontified "\C-s") " to search, or \\\\[help-quit] to exit.)" -- 2.39.5