summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Brulebois <kibi@debian.org>2011-06-05 03:21:18 +0200
committerPeter Hutterer <peter.hutterer@who-t.net>2011-09-29 14:09:40 +1000
commit537c5f631d1f8d526e63355b7d88cb1fb2793492 (patch)
tree7569f7028fdd012da1fd1d3f6a8ccbe546fb07af
parent0b56a7f0ad01d3a86cdd7a14d5e567a00a3553f6 (diff)
xkb: Fix case checks for Latin 4.
That one was missing _XkbKSLower: XK_kra: U+0138 LATIN SMALL LETTER KRA Reviewed-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Cyril Brulebois <kibi@debian.org>
-rw-r--r--xkb/xkbfmisc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xkb/xkbfmisc.c b/xkb/xkbfmisc.c
index e0426718f..d8202b496 100644
--- a/xkb/xkbfmisc.c
+++ b/xkb/xkbfmisc.c
@@ -92,7 +92,8 @@ unsigned set,rtrn;
((ks>=XK_Amacron)&&(ks<=XK_Umacron))) {
rtrn|= _XkbKSUpper;
}
- if (((ks>=XK_rcedilla)&&(ks<=XK_tslash))||
+ if ((ks==XK_kra)||
+ ((ks>=XK_rcedilla)&&(ks<=XK_tslash))||
(ks==XK_eng)||
((ks>=XK_amacron)&&(ks<=XK_umacron))) {
rtrn|= _XkbKSLower;