1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-22 17:22:21 -05:00

Made it so that hints get the "at line x" text aswell.

git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@402 3f818213-9676-44b0-a9b4-5e4c4e03d09d
This commit is contained in:
Raymond 2010-01-12 15:38:08 +00:00
parent 99e355328a
commit ef735ea947

View File

@ -392,9 +392,9 @@ begin
with PSScript.CompilerMessages[l] do
OnError(Row, Pos, MessageToString,errCompile)
else
psWriteln(PSScript.CompilerErrorToStr(l));
psWriteln(PSScript.CompilerErrorToStr(l) + ' at line ' + inttostr(PSScript.CompilerMessages[l].Row));
end else
psWriteln(PSScript.CompilerErrorToStr(l));
psWriteln(PSScript.CompilerErrorToStr(l) + ' at line ' + inttostr(PSScript.CompilerMessages[l].Row));
end;
end;