mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 08:49:25 +02:00
* prefix fix (merged)
This commit is contained in:
parent
e0e734ed2e
commit
11fbb1cc6d
@ -272,21 +272,26 @@ begin
|
|||||||
begin
|
begin
|
||||||
if status.use_gccoutput then
|
if status.use_gccoutput then
|
||||||
hs:=gccfilename(status.currentsource)+':'+tostr(status.currentline)+': '+hs+' '+
|
hs:=gccfilename(status.currentsource)+':'+tostr(status.currentline)+': '+hs+' '+
|
||||||
tostr(status.currentcolumn)+': '
|
tostr(status.currentcolumn)+': '+s
|
||||||
else
|
else
|
||||||
hs:=status.currentsource+'('+tostr(status.currentline)+
|
hs:=status.currentsource+'('+tostr(status.currentline)+
|
||||||
','+tostr(status.currentcolumn)+') '+hs+' ';
|
','+tostr(status.currentcolumn)+') '+hs+' '+s;
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
if status.use_gccoutput then
|
if status.use_gccoutput then
|
||||||
hs:=gccfilename(status.currentsource)+': '+hs+' '+tostr(status.currentline)+': '
|
hs:=gccfilename(status.currentsource)+': '+hs+' '+tostr(status.currentline)+': '+s
|
||||||
else
|
else
|
||||||
hs:=status.currentsource+'('+tostr(status.currentline)+') '+hs+' ';
|
hs:=status.currentsource+'('+tostr(status.currentline)+') '+hs+' '+s;
|
||||||
end;
|
end;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
if hs<>'' then
|
||||||
|
hs:=hs+' '+s
|
||||||
|
else
|
||||||
|
hs:=s;
|
||||||
end;
|
end;
|
||||||
{ add the message to the text }
|
|
||||||
hs:=hs+s;
|
|
||||||
{$ifdef FPC}
|
{$ifdef FPC}
|
||||||
if status.use_stderr then
|
if status.use_stderr then
|
||||||
begin
|
begin
|
||||||
@ -361,7 +366,10 @@ end;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.7 2000-09-24 21:33:46 peter
|
Revision 1.8 2000-09-30 16:07:20 peter
|
||||||
|
* prefix fix (merged)
|
||||||
|
|
||||||
|
Revision 1.7 2000/09/24 21:33:46 peter
|
||||||
* message updates merges
|
* message updates merges
|
||||||
|
|
||||||
Revision 1.6 2000/09/24 15:06:13 peter
|
Revision 1.6 2000/09/24 15:06:13 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user