From 6170c5036e3802914723a288ef3191b58ef4a42d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 13 Dec 2021 15:51:38 +0200 Subject: [PATCH] Fix regression in help-mode prompt * lisp/help-macro.el (make-help-screen): Restore SPC and DEL in prompt. Reported by Colin Baxter . --- lisp/help-macro.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/help-macro.el b/lisp/help-macro.el index 1fa9d82afd8..b3c7e2393a3 100644 --- a/lisp/help-macro.el +++ b/lisp/help-macro.el @@ -165,14 +165,18 @@ and then returns." (let ((cursor-in-echo-area t) (overriding-local-map local-map)) (setq key (read-key-sequence - (format "Type one of the options listed%s: " + (format "Type one of listed options%s: " (if (pos-visible-in-window-p (point-max)) "" (concat ", or " (help--key-description-fontified (kbd "")) - " or " + "/" (help--key-description-fontified (kbd "")) + "/" + (help--key-description-fontified (kbd "SPC")) + "/" + (help--key-description-fontified (kbd "DEL")) " to scroll")))) char (aref key 0))) -- 2.39.2