[PATCH 3/3] xkb: Fix case checks for Latin 4.

Cyril Brulebois kibi at debian.org
Sat Jun 4 18:27:09 PDT 2011


That one was missing _XkbKSLower:
  XK_kra: U+0138 LATIN SMALL LETTER KRA

Signed-off-by: Cyril Brulebois <kibi at debian.org>
---
 xkb/xkbfmisc.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/xkb/xkbfmisc.c b/xkb/xkbfmisc.c
index e042671..d8202b4 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;
-- 
1.7.5.3



More information about the xorg-devel mailing list