* In MPW, whole path to source file is now displayed in messages.

This commit is contained in:
olle 2005-01-24 18:12:17 +00:00
parent f5f6d7bf36
commit 2f38fbd7c2

View File

@ -296,10 +296,10 @@ begin
{$else} {$else}
{MPW style error} {MPW style error}
if status.currentcolumn>0 then if status.currentcolumn>0 then
hs:='File "'+status.currentsource+'"; Line '+tostr(status.currentline)+ hs:='File "'+status.currentsourcepath+status.currentsource+'"; Line '+tostr(status.currentline)+
' # (' + tostr(status.currentcolumn) + ') ' +hs+' '+s ' #[' + tostr(status.currentcolumn) + '] ' +hs+' '+s
else else
hs:='File "'+status.currentsource+'"; Line '+tostr(status.currentline)+' #'+hs+' '+s; hs:='File "'+status.currentsourcepath+status.currentsource+'"; Line '+tostr(status.currentline)+' # '+hs+' '+s;
{$endif} {$endif}
end end
else else
@ -398,7 +398,10 @@ end;
end. end.
{ {
$Log$ $Log$
Revision 1.34 2004-12-28 22:02:05 olle Revision 1.35 2005-01-24 18:12:17 olle
* In MPW, whole path to source file is now displayed in messages.
Revision 1.34 2004/12/28 22:02:05 olle
* fixed typo in MPW error msg * fixed typo in MPW error msg
Revision 1.33 2004/12/28 01:39:07 olle Revision 1.33 2004/12/28 01:39:07 olle