mirror of https://gitlab.com/basile.b/dexed.git
fix runnable compilation messages not shown anymore
This commit is contained in:
parent
12c6a2cf8d
commit
48c28bffcb
|
@ -1222,7 +1222,10 @@ begin
|
|||
try
|
||||
processOutputToStrings(proc, lst);
|
||||
if proc = fRunProc then for str in lst do
|
||||
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkBub);
|
||||
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkBub)
|
||||
else if proc.Executable = DCompiler then
|
||||
for str in lst do
|
||||
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkAuto);
|
||||
finally
|
||||
lst.Free;
|
||||
end;
|
||||
|
@ -1245,11 +1248,6 @@ begin
|
|||
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkBub);
|
||||
FreeRunnableProc;
|
||||
// runnable compiler
|
||||
end else
|
||||
if proc.Executable = DCompiler then
|
||||
begin
|
||||
for str in lst do
|
||||
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkAuto);
|
||||
end;
|
||||
finally
|
||||
lst.Free;
|
||||
|
|
Loading…
Reference in New Issue