summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Brulebois <kibi@debian.org>2011-06-05 03:21:18 +0200
committerCyril Brulebois <kibi@debian.org>2011-06-06 16:25:56 +0200
commitab0df72cd33f011cc48736cfbfce9bbe9c359a80 (patch)
treef2be0704e7685824dfc1a8ccfeaa129f9a81033b
parent9eb6e34c2dd09af714400ce6a1063477d7a64776 (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;