diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2011-10-25 20:47:00 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2011-10-25 20:47:00 (GMT) |
commit | 3c05207a5dbaf9f4d6cea13c3855985c679b0178 (patch) | |
tree | c01887f3f3d5c59291130568d33a6ea36f7fb1bf /unix/tkUnixEvent.c | |
parent | 20a06af3a0049e5d6413dda632018bdc7b7ecf0a (diff) | |
parent | 038d72255c1a94dbf204fb583f91c0316922328d (diff) | |
download | tk-3c05207a5dbaf9f4d6cea13c3855985c679b0178.zip tk-3c05207a5dbaf9f4d6cea13c3855985c679b0178.tar.gz tk-3c05207a5dbaf9f4d6cea13c3855985c679b0178.tar.bz2 |
Fix for bug 3410609; confirmed to work on UK keyboard.
Diffstat (limited to 'unix/tkUnixEvent.c')
-rw-r--r-- | unix/tkUnixEvent.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/tkUnixEvent.c b/unix/tkUnixEvent.c index c7f126f..0987129 100644 --- a/unix/tkUnixEvent.c +++ b/unix/tkUnixEvent.c @@ -323,6 +323,7 @@ TransferXEventsToTcl( if (event.type == KeyPress || event.type == KeyRelease) { event.k.charValuePtr = NULL; event.k.charValueLen = 0; + event.k.keysym = NoSymbol; /* * Force the calling of the input method engine now. The results |