From: Richard M. Stallman Date: Tue, 18 Aug 1998 09:01:20 +0000 (+0000) Subject: (Fy_or_n_p): Don't bind input-method-function. X-Git-Tag: emacs-20.3~22 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7ba13c57a2b6211228a3485b65129b6c9b732790;p=emacs.git (Fy_or_n_p): Don't bind input-method-function. Instead, pass 0 as INPUT_METHOD to read_filtered_event. --- 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;