diff options
author | Juri Linkov <juri@linkov.net> | 2019-12-10 01:53:16 +0200 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2019-12-10 01:53:16 +0200 |
commit | d8d537e17349c02d981eabd92c78f60f73354798 (patch) | |
tree | ccae6b06d655db55c8bd8475ae04ba0b004566ca | |
parent | 5063e38921de8cb872965abda32bcc6fd8894532 (diff) | |
download | emacs-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.el | 2 |
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) |