In-Reply-To: <[EMAIL PROTECTED]>
> Note that the input method code in xforms is supposed to be derived
> from lyxlookup.[Ch] (because I am the one who requested support).
Hence it creates Input Context with the style bits
XIMPreeditNothing|XIMStatusNothing
which is a pain in the neck for Japanese inputs.
Anyway you can play around with the following patch and xforms 0.89
combo.
Regards,
SMiyata
Index: lyx-devel/src/WorkArea.C
===================================================================
RCS file: /cvs/lyx/lyx-devel/src/WorkArea.C,v
retrieving revision 1.61
diff -u -r1.61 WorkArea.C
--- lyx-devel/src/WorkArea.C 2002/02/16 15:59:34 1.61
+++ lyx-devel/src/WorkArea.C 2002/02/19 11:51:23
@@ -480,6 +480,7 @@
<< xke->time - last_time_pressed
<< endl;
if (xke->time - last_time_pressed < 25 // should perhaps be tunable
+ && xke->time - last_time_pressed != 0 // Do not purge IM server
outputs!
&& ret_state == last_state_pressed
&& xke->keycode == last_key_pressed) {
lyxerr[Debug::KEY]