summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Pascal <pascal@info.tsu.ru>2006-10-02 02:17:14 +0300
committerDaniel Stone <daniels@endtroducing.fooishbar.org>2006-10-02 02:19:45 +0300
commitd6ea96b13e2ea01c51998c41ae2a3677bdedf61c (patch)
tree75868acf719945507653e7a7b2b44782c37fdbdf
parent84eb2c0a06de60e88e14bb03fabe661d7cd8f1d3 (diff)
xkb: fix wrapping when switching between groups
Use XkbCharToInt as that's what we're doing.
-rw-r--r--xkb/xkbUtils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xkb/xkbUtils.c b/xkb/xkbUtils.c
index ee0abbeae..26ff35e89 100644
--- a/xkb/xkbUtils.c
+++ b/xkb/xkbUtils.c
@@ -754,12 +754,12 @@ unsigned char grp;
grp= state->locked_group;
- if (grp>=ctrls->num_groups || grp < 0)
- state->locked_group= XkbAdjustGroup(grp,ctrls);
+ if (grp>=ctrls->num_groups)
+ state->locked_group= XkbAdjustGroup(XkbCharToInt(grp),ctrls);
grp= state->locked_group+state->base_group+state->latched_group;
- if (grp>=ctrls->num_groups || grp < 0)
- state->group= XkbAdjustGroup(grp,ctrls);
+ if (grp>=ctrls->num_groups)
+ state->group= XkbAdjustGroup(XkbCharToInt(grp),ctrls);
else state->group= grp;
XkbComputeCompatState(xkbi);
return;