diff options
author | hobbs <hobbs> | 2002-06-15 02:08:12 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-06-15 02:08:12 (GMT) |
commit | c79fd6dcf3ca7f681ad3a9080eaebb25e97c2010 (patch) | |
tree | 1a7e9938d5736d6fde9910a8fb5a013e0cff6b32 /unix/tkUnixKey.c | |
parent | b9551536f704910727aa738f8a6e3aac1219c67f (diff) | |
download | tk-c79fd6dcf3ca7f681ad3a9080eaebb25e97c2010.zip tk-c79fd6dcf3ca7f681ad3a9080eaebb25e97c2010.tar.gz tk-c79fd6dcf3ca7f681ad3a9080eaebb25e97c2010.tar.bz2 |
* generic/tkCmds.c (Tk_TkObjCmd):
* unix/tkUnixKey.c (TkpGetString):
* generic/tkEvent.c (Tk_HandleEvent):
* generic/tkInt.h: changed useInputMethods boolean from int to a
bit in the flags variable (TK_DISPLAY_USE_IM)
Diffstat (limited to 'unix/tkUnixKey.c')
-rw-r--r-- | unix/tkUnixKey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixKey.c b/unix/tkUnixKey.c index 9bb4633..ac18f9c 100644 --- a/unix/tkUnixKey.c +++ b/unix/tkUnixKey.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixKey.c,v 1.8 2002/06/15 01:54:09 hobbs Exp $ + * RCS: @(#) $Id: tkUnixKey.c,v 1.9 2002/06/15 02:08:12 hobbs Exp $ */ #include "tkInt.h" @@ -95,7 +95,7 @@ TkpGetString(winPtr, eventPtr, dsPtr) Tcl_DStringSetLength(&buf, TCL_DSTRING_STATIC_SIZE-1); #ifdef TK_USE_INPUT_METHODS - if (winPtr->dispPtr->useInputMethods + if ((winPtr->dispPtr->flags & TK_DISPLAY_USE_IM) && (winPtr->inputContext != NULL) && (eventPtr->type == KeyPress)) { #if TK_XIM_SPOT |