]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix regression in help-mode prompt
authorEli Zaretskii <eliz@gnu.org>
Mon, 13 Dec 2021 13:51:38 +0000 (15:51 +0200)
committerEli Zaretskii <eliz@gnu.org>
Mon, 13 Dec 2021 13:51:38 +0000 (15:51 +0200)
* lisp/help-macro.el (make-help-screen): Restore SPC and DEL in
prompt.  Reported by Colin Baxter <m43cap@yandex.com>.

lisp/help-macro.el

index 1fa9d82afd836a99398261314b82bf16ebccc7e0..b3c7e2393a3bd6456ac907f895eae90b4a81b51d 100644 (file)
@@ -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 "<PageDown>"))
-                                                   " or "
+                                                   "/"
                                                    (help--key-description-fontified (kbd "<PageUp>"))
+                                                   "/"
+                                                   (help--key-description-fontified (kbd "SPC"))
+                                                   "/"
+                                                   (help--key-description-fontified (kbd "DEL"))
                                                    " to scroll"))))
                            char (aref key 0)))