]> git.eshelyaron.com Git - emacs.git/commitdiff
Make read-char-choice less modal
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 13 Oct 2020 02:59:11 +0000 (04:59 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 13 Oct 2020 02:59:11 +0000 (04:59 +0200)
* lisp/subr.el (read-char-choice): Use `read-char-from-minibuffer'
here (bug#42708) so that we're not as modal (and users can copy
the help buffer, if they should so want).

lisp/subr.el

index 07cab5909d693ea896c27c53480218216fcde5d0..867c9f0bfbbb04e69e69a4c4121861e5feff545b 100644 (file)
@@ -2622,7 +2622,15 @@ keyboard-quit events while waiting for a valid input."
          (unless (get-text-property 0 'face prompt)
            (setq prompt (propertize prompt 'face 'minibuffer-prompt)))
          (setq char (let ((inhibit-quit inhibit-keyboard-quit))
-                      (read-key prompt)))
+                      (read-char-from-minibuffer
+                        prompt
+                        ;; If we have a dynamically bound `help-form'
+                        ;; here, then the `C-h' (i.e., `help-char')
+                        ;; character should output that instead of
+                        ;; being a command char.
+                        (if help-form
+                            (cons help-char chars)
+                          chars))))
          (and show-help (buffer-live-p (get-buffer helpbuf))
               (kill-buffer helpbuf))
          (cond