diff options
author | fvogel <fvogelnew1@free.fr> | 2020-07-07 20:41:31 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2020-07-07 20:41:31 (GMT) |
commit | 47116a3ec3ac7f6442f634b96a926dec2691285b (patch) | |
tree | 27bf1d6e34c4c2b14f129489dda48599687c3a52 | |
parent | 02c0e0f004c8958c75dc94c71943cd4b0f46350c (diff) | |
download | tk-47116a3ec3ac7f6442f634b96a926dec2691285b.zip tk-47116a3ec3ac7f6442f634b96a926dec2691285b.tar.gz tk-47116a3ec3ac7f6442f634b96a926dec2691285b.tar.bz2 |
Fix blank space
-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 757cb0f..4e150f7 100644 --- a/unix/tkUnixKey.c +++ b/unix/tkUnixKey.c @@ -374,9 +374,9 @@ TkpGetKeySym( && (eventPtr->xkey.state & LockMask))) { index += 1; } - + sym = TkKeycodeToKeysym(dispPtr, eventPtr->xkey.keycode, 0, - index); + index); /* * Special handling: if the key was shifted because of Lock, but lock is |