diff --git a/components/codetools/codetoolscfgscript.pas b/components/codetools/codetoolscfgscript.pas index 6bc8346997..3859e4fcbc 100644 --- a/components/codetools/codetoolscfgscript.pas +++ b/components/codetools/codetoolscfgscript.pas @@ -452,7 +452,7 @@ begin CheckCTCSVariable(Left); CheckCTCSVariable(Right); {$ENDIF} - //debugln(['CompareCTCSVariables AAA1 Left=',dbgs(Left),' Right=',dbgs(Right)]); + //debugln(['CompareCTCSVariables START Left=',dbgs(Left),' Right=',dbgs(Right)]); Result:=false; Equal:=false; LeftIsLowerThanRight:=false; diff --git a/components/codetools/examples/scanexamples/modemacpas.pas b/components/codetools/examples/scanexamples/modemacpas.pas index ce04f55614..14c93edbed 100644 --- a/components/codetools/examples/scanexamples/modemacpas.pas +++ b/components/codetools/examples/scanexamples/modemacpas.pas @@ -11,11 +11,11 @@ uses {$DEFINE bogus4} {$ifc defined test1} -type aaa1 = integer; +type mmp1 = integer; {$elifc defined test2} -type aaa2 = integer; +type mmp2 = integer; {$elifc defined test3} -type aaa3 = integer; +type mmp3 = integer; {$ifc defined bogus1} type bogus1 = integer; {$elifc defined bogus2} @@ -27,7 +27,7 @@ type aaa3 = integer; {$error Neither bogus1 nor bogus2 nor bogus3 are defined.} {$endc} {$elsec} -type aaaELSE = integer; +type mmpELSE = integer; {$error Neither test1 nor test2 nor test3 are defined.} {$endc} diff --git a/components/h2pas/h2pasconvert.pas b/components/h2pas/h2pasconvert.pas index e4a215b61e..f5f3950cd0 100644 --- a/components/h2pas/h2pasconvert.pas +++ b/components/h2pas/h2pasconvert.pas @@ -2726,7 +2726,7 @@ begin repeat CurAtom:=ReadNextPascalAtom(Src,Position,AtomStart); if CurAtom='' then break; - //DebugLn(['TReplaceImplicitTypes.FindNextImplicitType AAA1 ',CurAtom]); + //DebugLn(['TReplaceImplicitTypes.FindNextImplicitType atom ',CurAtom]); if CurAtom=':' then begin // var, const, out declaration CurAtom:=ReadNextPascalAtom(Src,Position,AtomStart); @@ -4253,8 +4253,8 @@ var Identifier:=@Tool.Src[Position+Count]; AVLNode:=NeededPointerTypes.FindKey(Identifier, @CompareImplicitTypeStringAndName); - DebugLn(['AddNeededPointerType ',GetIdentifier(Identifier),' Position=',Position,' Count=',Count]); - DebugLn(['AddNeededPointerType AAA1 ',copy(Tool.Src,Position,100)]); + DebugLn(['AddNeededPointerType Identifier ',GetIdentifier(Identifier),' Position=',Position,' Count=',Count]); + DebugLn(['AddNeededPointerType Position ',copy(Tool.Src,Position,100)]); if AVLNode<>nil then begin Item:=TImplicitType(AVLNode.Data); if Item.MaxPosition