mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-26 16:09:35 +02:00
* removed hardcoded limit of 80 width
This commit is contained in:
parent
2c081cf333
commit
a20f357c8f
@ -1191,7 +1191,7 @@ var
|
||||
while (SendBytes>0) do
|
||||
begin
|
||||
LeftX:=WinMaxX-CurrX+1;
|
||||
if (SendBytes>LeftX) or (CurrX+SendBytes=81) then
|
||||
if (SendBytes>LeftX) then
|
||||
begin
|
||||
ttyWrite(Copy(s,i-SendBytes,LeftX));
|
||||
dec(SendBytes,LeftX);
|
||||
@ -1610,7 +1610,10 @@ Begin
|
||||
End.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.24 2000-04-14 12:15:31 pierre
|
||||
Revision 1.25 2000-05-08 13:24:27 peter
|
||||
* removed hardcoded limit of 80 width
|
||||
|
||||
Revision 1.24 2000/04/14 12:15:31 pierre
|
||||
* several bugs fixed
|
||||
|
||||
Revision 1.23 2000/04/07 13:26:27 jonas
|
||||
|
Loading…
Reference in New Issue
Block a user