LazBuild: optimized wrapping of first line of parameter description in command line help output

This commit is contained in:
Maxim Ganetsky 2024-01-22 19:08:03 +03:00
parent c66f02e790
commit 9776c68b28

View File

@ -1809,7 +1809,7 @@ const
procedure w(Msg: string);
begin
writeln(UTF8ToConsole(UTF8WrapText(StringOfChar(' ', cDescrIndent) + Msg, LineEnding, [' ', #9], cMaxLength, cDescrIndent)));
writeln(UTF8ToConsole(StringOfChar(' ', cDescrIndent) + UTF8WrapText(Msg, LineEnding, [' ', #9], cMaxLength, cDescrIndent)));
end;
begin