From: Richard M. Stallman Date: Tue, 18 Aug 1998 04:27:37 +0000 (+0000) Subject: (Fy_or_n_p): Bind input-method-function to nil. X-Git-Tag: emacs-20.3~28 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3844ee4450e82eb3f788f1f8551143a8cc9d03e7;p=emacs.git (Fy_or_n_p): Bind input-method-function to nil. --- diff --git a/src/fns.c b/src/fns.c index a958ba20f16..6a0b9824971 100644 --- 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"));