mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-08 21:10:16 +01:00
xkb: Fix case checks for Latin 2.
Those ones were getting _XkbKSLower for no reasons: XK_ogonek: U+02DB OGONEK XK_doubleacute: U+02DD DOUBLE ACUTE ACCENT Reviewed-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Cyril Brulebois <kibi@debian.org>
This commit is contained in:
parent
512a9750c1
commit
0b56a7f0ad
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ unsigned set,rtrn;
|
|||
((ks>=XK_Racute)&&(ks<=XK_Tcedilla))) {
|
||||
rtrn|= _XkbKSUpper;
|
||||
}
|
||||
if (((ks>=XK_aogonek)&&(ks<=XK_zabovedot)&&(ks!=XK_caron))||
|
||||
if (((ks>=XK_aogonek)&&(ks<=XK_zabovedot)&&(ks!=XK_ogonek)&&(ks!=XK_caron)&&(ks!=XK_doubleacute))||
|
||||
((ks>=XK_racute)&&(ks<=XK_tcedilla))) {
|
||||
rtrn|= _XkbKSLower;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue