mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 23:19:30 +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.
|
||||
if u<$00C0 then begin
|
||||
// most common
|
||||
if (u>=$0041) and (u<=$0061) then
|
||||
if (u>=$0041) and (u<=$005A) then
|
||||
Result:=u+32
|
||||
else
|
||||
Result:=u;
|
||||
|
Loading…
Reference in New Issue
Block a user