mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-04 11:50:17 +02:00
* Flush output in case of redir
This commit is contained in:
parent
ee3fb55442
commit
cd1251bf00
@ -397,7 +397,10 @@ begin
|
|||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
if status.use_redir then
|
if status.use_redir then
|
||||||
writeln(status.redirfile,MsgTimeStr+MsgLocStr+MsgTypeStr+s)
|
begin
|
||||||
|
writeln(status.redirfile,MsgTimeStr+MsgLocStr+MsgTypeStr+s);
|
||||||
|
flush(status.redirfile);
|
||||||
|
end
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
write(MsgTimeStr+MsgLocStr);
|
write(MsgTimeStr+MsgLocStr);
|
||||||
|
Loading…
Reference in New Issue
Block a user