added Hakan Kizilhan to contributors

git-svn-id: trunk@14117 -
This commit is contained in:
mattias 2008-02-13 11:41:51 +00:00
parent e79be37c3d
commit f3b6a2f28c
2 changed files with 5 additions and 4 deletions

View File

@ -1631,9 +1631,6 @@ var
ReadNextAtom;
if AtomStart=Node.NextBrother.StartPos then begin
// node is empty
NextNode:=Node.NextBrother;
if NextNode.Desc=cdnEnd then
NextNode:=NextNode.NextSkipChilds;
DebugLn(['TCompilerDirectivesTree.RemoveEmptyNodes node only contains spaces and comments ',GetDirective(Node)]);
DisableIfNode(Node,true,Changed);
end;
@ -1645,9 +1642,12 @@ var
begin
//DebugLn(['TCompilerDirectivesTree.RemoveEmptyNodes ']);
// check nodes from end to start
Node:=Tree.Root;
while (Node.NextBrother<>nil) do Node:=Node.NextBrother;
while (Node.LastChild<>nil) do Node:=Node.LastChild;
while Node<>nil do begin
NextNode:=Node.Next;
NextNode:=Node.Prior;
CheckNode;
Node:=NextNode;
end;

View File

@ -41,6 +41,7 @@ Giulio Bernardi
GongYu
Graeme Geldenhuys
Grzegorz Zakrzewski
Hakan Kizilhan
Hans-Joachim Ott
Hwang Weng Sun
Ido Kanner