mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 19:49:23 +02:00
* Flush output in case of redir
This commit is contained in:
parent
ee3fb55442
commit
cd1251bf00
@ -397,7 +397,10 @@ begin
|
||||
else
|
||||
begin
|
||||
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
|
||||
begin
|
||||
write(MsgTimeStr+MsgLocStr);
|
||||
|
Loading…
Reference in New Issue
Block a user