mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 17:30:02 +01:00
xkb: Fix case checks for Latin 1.
That one was missing _XkbKSLower: XK_ssharp: U+00DF LATIN SMALL LETTER SHARP S That one was getting _XkbKSLower for no reasons: XK_division: U+00F7 DIVISION SIGN For reference, XK_multiply was already excluded from the _XkbKSUpper check, it's no big surprise XK_division has to be excluded from the _XkbKSLower check. Reviewed-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Cyril Brulebois <kibi@debian.org>
This commit is contained in:
parent
feab04397d
commit
2b88189863
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ unsigned set,rtrn;
|
||||||
rtrn|= _XkbKSUpper;
|
rtrn|= _XkbKSUpper;
|
||||||
}
|
}
|
||||||
if (((ks>=XK_a)&&(ks<=XK_z))||
|
if (((ks>=XK_a)&&(ks<=XK_z))||
|
||||||
((ks>=XK_agrave)&&(ks<=XK_ydiaeresis))) {
|
((ks>=XK_ssharp)&&(ks<=XK_ydiaeresis)&&(ks!=XK_division))) {
|
||||||
rtrn|= _XkbKSLower;
|
rtrn|= _XkbKSLower;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue