summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-18 09:01:20 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-18 09:01:20 +0000
commit7ba13c57a2b6211228a3485b65129b6c9b732790 (patch)
tree3f9ad9f45a72ef71451ef94a84cc2a7301c45744
parentbb49a192245a1a8d8b5f1f53d9895edc32b80f2a (diff)
downloademacs-7ba13c57a2b6211228a3485b65129b6c9b732790.tar.gz
(Fy_or_n_p): Don't bind input-method-function.
Instead, pass 0 as INPUT_METHOD to read_filtered_event.
-rw-r--r--src/fns.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 6a0b9824971..bacddd2072e 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2355,7 +2355,6 @@ Also accepts Space to mean yes, or Delete to mean no.")
int count = specpdl_ptr - specpdl;
specbind (Qcursor_in_echo_area, Qt);
- specbind (Qinput_method_function, Qnil);
map = Fsymbol_value (intern ("query-replace-map"));
@@ -2395,7 +2394,7 @@ Also accepts Space to mean yes, or Delete to mean no.")
Fraise_frame (mini_frame);
}
- obj = read_filtered_event (1, 0, 0);
+ obj = read_filtered_event (1, 0, 0, 0);
cursor_in_echo_area = 0;
/* If we need to quit, quit with cursor_in_echo_area = 0. */
QUIT;