mirror of https://gitlab.com/basile.b/dexed.git
tweak messages
This commit is contained in:
parent
7be4884ee8
commit
3dcc1a87f0
|
@ -245,7 +245,7 @@ procedure TCompilersPaths.checkIfGlobalIsGlobal;
|
|||
begin
|
||||
if globalCompiler = DCompiler.global then
|
||||
begin
|
||||
raise Exception.Create('global compiler should not be set the DCompiler.global');
|
||||
raise Exception.Create('global compiler should not be set to DCompiler.global');
|
||||
globalCompiler := low(DCompiler);
|
||||
end;
|
||||
end;
|
||||
|
|
|
@ -3016,7 +3016,7 @@ begin
|
|||
if (s.length > 2) and (s[1..3] = '-of') then
|
||||
begin
|
||||
lst.Delete(i);
|
||||
fMsgs.message('the option "-of" is not be handled in the runnable modules',
|
||||
fMsgs.message('the option "-of" is ignored when compiling a runnable modules',
|
||||
fDoc, amcEdit, amkWarn);
|
||||
end
|
||||
else if s = '-c' then
|
||||
|
@ -3026,7 +3026,7 @@ begin
|
|||
else
|
||||
begin
|
||||
lst.Delete(i);
|
||||
fMsgs.message('the option "-c" is not be handled when a module is tested',
|
||||
fMsgs.message('the option "-c" is ignored when an individual module is tested',
|
||||
fDoc, amcEdit, amkWarn);
|
||||
end;
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue