mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-08 20:58:28 +02:00
LazUtils: only transform relevant alphabet characters in LazUTF16.UnicodeLowercase function, issue #41056
This commit is contained in:
parent
f05736ba41
commit
6e4a0dd2ae
@ -1009,7 +1009,7 @@ begin
|
|||||||
InitUnicodeTables; // Initialize only when needed.
|
InitUnicodeTables; // Initialize only when needed.
|
||||||
if u<$00C0 then begin
|
if u<$00C0 then begin
|
||||||
// most common
|
// most common
|
||||||
if (u>=$0041) and (u<=$0061) then
|
if (u>=$0041) and (u<=$005A) then
|
||||||
Result:=u+32
|
Result:=u+32
|
||||||
else
|
else
|
||||||
Result:=u;
|
Result:=u;
|
||||||
|
Loading…
Reference in New Issue
Block a user