mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 03:46:10 +02:00
* not ppas call on compile failure
This commit is contained in:
parent
fe0be42a05
commit
4e1ba2115f
@ -572,7 +572,9 @@ begin
|
|||||||
switch_to_temp_heap;
|
switch_to_temp_heap;
|
||||||
{$endif TEMPHEAP}
|
{$endif TEMPHEAP}
|
||||||
Compile(FileName);
|
Compile(FileName);
|
||||||
if LinkAfter then
|
if LinkAfter and
|
||||||
|
(CompilationPhase<>cpAborted) and
|
||||||
|
(status.errorCount=0) then
|
||||||
begin
|
begin
|
||||||
CompilationPhase:=cpLinking;
|
CompilationPhase:=cpLinking;
|
||||||
CompilerStatusDialog^.Update;
|
CompilerStatusDialog^.Update;
|
||||||
@ -700,7 +702,10 @@ end;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.34 1999-08-16 18:25:13 peter
|
Revision 1.35 1999-08-22 22:27:30 pierre
|
||||||
|
* not ppas call on compile failure
|
||||||
|
|
||||||
|
Revision 1.34 1999/08/16 18:25:13 peter
|
||||||
* Adjusting the selection when the editor didn't contain any line.
|
* Adjusting the selection when the editor didn't contain any line.
|
||||||
* Reserved word recognition redesigned, but this didn't affect the overall
|
* Reserved word recognition redesigned, but this didn't affect the overall
|
||||||
syntax highlight speed remarkably (at least not on my Amd-K6/350).
|
syntax highlight speed remarkably (at least not on my Amd-K6/350).
|
||||||
|
Loading…
Reference in New Issue
Block a user