diff options
author | Kenichi Handa <handa@m17n.org> | 1999-05-26 07:40:26 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1999-05-26 07:40:26 +0000 |
commit | 0392d2e195beea9a29b9e5ff3df446bf07c76d4b (patch) | |
tree | e253d077c188738e82923b9e2fffa474a2ead13b /lisp/map-ynp.el | |
parent | bbeb91583d591df2da61e2ea9bd5b3ec48bad43d (diff) | |
download | emacs-0392d2e195beea9a29b9e5ff3df446bf07c76d4b.tar.gz |
(map-y-or-n-p): Don't inherit the current input
method in read-event.
Diffstat (limited to 'lisp/map-ynp.el')
-rw-r--r-- | lisp/map-ynp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/map-ynp.el b/lisp/map-ynp.el index bc3183a5e28..d773cb79ab7 100644 --- a/lisp/map-ynp.el +++ b/lisp/map-ynp.el @@ -149,7 +149,7 @@ Returns the number of actions taken." (key-description (vector help-char))) (if minibuffer-auto-raise (raise-frame (window-frame (minibuffer-window)))) - (setq char (read-event nil t)) + (setq char (read-event)) ;; Show the answer to the question. (message "%s(y, n, !, ., q, %sor %s) %s" prompt user-keys |