]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fy_or_n_p): Bind input-method-function to nil.
authorRichard M. Stallman <rms@gnu.org>
Tue, 18 Aug 1998 04:27:37 +0000 (04:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 18 Aug 1998 04:27:37 +0000 (04:27 +0000)
src/fns.c

index a958ba20f16298b1f8326f0535fbca4a8447e54b..6a0b982497133a3a82f5896b7384256cc585e728 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -60,6 +60,8 @@ Lisp_Object Qyes_or_no_p_history;
 Lisp_Object Qcursor_in_echo_area;
 Lisp_Object Qwidget_type;
 
+extern Lisp_Object Qinput_method_function;
+
 static int internal_equal ();
 
 extern long get_random ();
@@ -2353,6 +2355,7 @@ 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"));