summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2019-12-10 01:53:16 +0200
committerJuri Linkov <juri@linkov.net>2019-12-10 01:53:16 +0200
commitd8d537e17349c02d981eabd92c78f60f73354798 (patch)
treeccae6b06d655db55c8bd8475ae04ba0b004566ca
parent5063e38921de8cb872965abda32bcc6fd8894532 (diff)
downloademacs-d8d537e17349c02d981eabd92c78f60f73354798.tar.gz
emacs-d8d537e17349c02d981eabd92c78f60f73354798.tar.bz2
emacs-d8d537e17349c02d981eabd92c78f60f73354798.zip
* lisp/emacs-lisp/map-ynp.el (read-answer): Use [remap self-insert-command]
This reverts the last change that replaced [remap self-insert-command] with [t]. The user should have freedom of using any command in the minibuffer. (bug#32738)
-rw-r--r--lisp/emacs-lisp/map-ynp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/map-ynp.el b/lisp/emacs-lisp/map-ynp.el
index a83e2f1bfd0..f0c11c489a7 100644
--- a/lisp/emacs-lisp/map-ynp.el
+++ b/lisp/emacs-lisp/map-ynp.el
@@ -345,7 +345,7 @@ When `use-dialog-box' is t, pop up a dialog window to get user input."
(delete-minibuffer-contents)
(insert (nth 0 a))
(exit-minibuffer))))
- (define-key map [t]
+ (define-key map [remap self-insert-command]
(lambda ()
(interactive)
(delete-minibuffer-contents)