LazUtils: commented out stray writeln, which was causing crashes on Windows after r64345 #865e21e88f

git-svn-id: trunk@64350 -
This commit is contained in:
maxim 2021-01-08 00:43:07 +00:00
parent d8fdfb832d
commit 3d552017f1

View File

@ -3409,7 +3409,7 @@ begin
begin
if (P1^ > #191) or (P2^ > #191) then // Multi-byte encoding.
begin
WriteLn('UTF8CompareText: Calling WideCompareText for "'+S1+'" <> "'+S2+'"');
//WriteLn('UTF8CompareText: Calling WideCompareText for "'+S1+'" <> "'+S2+'"');
Exit(WideCompareText(UTF8ToUTF16(S1),UTF8ToUTF16(S2)));
end;
Chr1 := P1^;