diff options
| author | Richard M. Stallman | 1998-08-18 04:27:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-18 04:27:37 +0000 |
| commit | 3844ee4450e82eb3f788f1f8551143a8cc9d03e7 (patch) | |
| tree | 9c87e9331b75a48371b576bb581acab5cc8507cf /src | |
| parent | 3e56710f649d8c4c198c92e8047f60687e30ad23 (diff) | |
| download | emacs-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.c | 3 |
1 files changed, 3 insertions, 0 deletions
| @@ -60,6 +60,8 @@ Lisp_Object Qyes_or_no_p_history; | |||
| 60 | Lisp_Object Qcursor_in_echo_area; | 60 | Lisp_Object Qcursor_in_echo_area; |
| 61 | Lisp_Object Qwidget_type; | 61 | Lisp_Object Qwidget_type; |
| 62 | 62 | ||
| 63 | extern Lisp_Object Qinput_method_function; | ||
| 64 | |||
| 63 | static int internal_equal (); | 65 | static int internal_equal (); |
| 64 | 66 | ||
| 65 | extern long get_random (); | 67 | extern 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 | ||