aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-18 04:27:37 +0000
committerRichard M. Stallman1998-08-18 04:27:37 +0000
commit3844ee4450e82eb3f788f1f8551143a8cc9d03e7 (patch)
tree9c87e9331b75a48371b576bb581acab5cc8507cf /src
parent3e56710f649d8c4c198c92e8047f60687e30ad23 (diff)
downloademacs-3844ee4450e82eb3f788f1f8551143a8cc9d03e7.tar.gz
emacs-3844ee4450e82eb3f788f1f8551143a8cc9d03e7.zip
(Fy_or_n_p): Bind input-method-function to nil.
Diffstat (limited to 'src')
-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;
60Lisp_Object Qcursor_in_echo_area; 60Lisp_Object Qcursor_in_echo_area;
61Lisp_Object Qwidget_type; 61Lisp_Object Qwidget_type;
62 62
63extern Lisp_Object Qinput_method_function;
64
63static int internal_equal (); 65static int internal_equal ();
64 66
65extern long get_random (); 67extern long get_random ();
@@ -2353,6 +2355,7 @@ Also accepts Space to mean yes, or Delete to mean no.")
2353 int count = specpdl_ptr - specpdl; 2355 int count = specpdl_ptr - specpdl;
2354 2356
2355 specbind (Qcursor_in_echo_area, Qt); 2357 specbind (Qcursor_in_echo_area, Qt);
2358 specbind (Qinput_method_function, Qnil);
2356 2359
2357 map = Fsymbol_value (intern ("query-replace-map")); 2360 map = Fsymbol_value (intern ("query-replace-map"));
2358 2361