From: Eli Zaretskii Date: Mon, 13 Dec 2021 13:51:38 +0000 (+0200) Subject: Fix regression in help-mode prompt X-Git-Tag: emacs-28.0.91~49 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6170c5036e3802914723a288ef3191b58ef4a42d;p=emacs.git Fix regression in help-mode prompt * lisp/help-macro.el (make-help-screen): Restore SPC and DEL in prompt. Reported by Colin Baxter . --- 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)))