summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-18 04:27:37 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-18 04:27:37 +0000
commit3844ee4450e82eb3f788f1f8551143a8cc9d03e7 (patch)
tree9c87e9331b75a48371b576bb581acab5cc8507cf
parent3e56710f649d8c4c198c92e8047f60687e30ad23 (diff)
downloademacs-3844ee4450e82eb3f788f1f8551143a8cc9d03e7.tar.gz
(Fy_or_n_p): Bind input-method-function to nil.
-rw-r--r--src/fns.c3
1 files changed, 3 insertions, 0 deletions
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"));