]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fy_or_n_p): Don't bind input-method-function.
authorRichard M. Stallman <rms@gnu.org>
Tue, 18 Aug 1998 09:01:20 +0000 (09:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 18 Aug 1998 09:01:20 +0000 (09:01 +0000)
Instead, pass 0 as INPUT_METHOD to read_filtered_event.

src/fns.c

index 6a0b982497133a3a82f5896b7384256cc585e728..bacddd2072e0daab2685135c431c531019f10332 100644 (file)
--- 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;