IdeConfig: Always check the skcAll key in GetSkipCheckByKey function

This commit is contained in:
n7800 2025-03-05 22:50:05 +05:00 committed by Maxim Ganetsky
parent 20d924570a
commit 971885c68a
5 changed files with 8 additions and 7 deletions

View File

@ -31,7 +31,7 @@ begin
if not EMSSupported then {%H-}exit;
if not (GetSkipCheckByKey('MacroScript') or GetSkipCheckByKey('All')) then begin
if not GetSkipCheckByKey('MacroScript') then begin
conf := GetEMSConf;
try

View File

@ -743,7 +743,7 @@ var
I: Integer;
begin
FForceNewInstance := CheckParamsForForceNewInstanceOpt;
FSkipAllChecks := GetSkipCheck(skcUniqueInstance) or GetSkipCheck(skcAll);
FSkipAllChecks := GetSkipCheck(skcUniqueInstance);
//get cmd line filenames
FFilesToOpen := ExtractCmdLineFilenames;

View File

@ -1301,7 +1301,7 @@ begin
end;
end
else
if (not (GetSkipCheck(skcLastCalled) or GetSkipCheck(skcAll)) ) and
if (not GetSkipCheck(skcLastCalled)) and
(CompareFilenames(LastCalled,CurPrgName)<>0) and
(CompareFilenames(LastCalled,AltPrgName)<>0) and
(CompareFilenames(CurPrgName,AltPrgName)<>0) // we can NOT check, if we only have the path inside the PCP
@ -1434,7 +1434,7 @@ begin
ShowSetupDialog:=true;
{$ENDIF}
SkipAllTests := GetSkipCheck(skcSetup) or GetSkipCheck(skcAll);
SkipAllTests := GetSkipCheck(skcSetup);
// check lazarus directory
if (not ShowSetupDialog)

View File

@ -289,10 +289,11 @@ end;
function GetSkipCheckByKey(AKey: String): Boolean;
var
i: integer;
AValue: string;
AAll, AValue: string;
begin
// return language specified in command line (empty string if no language specified)
Result := False;
AAll := ','+UpperCase(SkipChecksKeys[skcAll])+',';
AKey := ','+UpperCase(AKey)+',';
AValue := '';
i := 1;
@ -301,7 +302,7 @@ begin
if ParamIsOptionPlusValue(i, SkipChecksOptLong, AValue) = true then
begin
AValue := ','+UpperCase(AValue)+',';
Result := Pos(AKey, AValue) > 0;
Result := (Pos(AAll, AValue) > 0) or (Pos(AKey, AValue) > 0);
if Result then
exit;
end;

View File

@ -1538,7 +1538,7 @@ var
begin
StaticPackages:=LazarusPackageIntf.RegisteredPackages;
if StaticPackages=nil then exit;
Quiet:=GetSkipCheck(skcMissingPackageFile) or GetSkipCheck(skcAll);
Quiet:=GetSkipCheck(skcMissingPackageFile);
PackageGraph.AbortRegistration:=false;
// register components in Lazarus packages
for i:=0 to StaticPackages.Count-1 do begin