Browse Source

Fixed indentation.

git-svn-id: trunk@19770 -
svenbarth 13 years ago
parent
commit
7fa365233b
1 changed files with 14 additions and 12 deletions
  1. 14 12
      compiler/pgenutil.pas

+ 14 - 12
compiler/pgenutil.pas

@@ -449,19 +449,21 @@ uses
 
 
             { extract all created symbols and defs from the temporary symtable
             { extract all created symbols and defs from the temporary symtable
               and add them to the specializest }
               and add them to the specializest }
-            for i:=0 to tempst.SymList.Count-1 do begin
-              item:=tempst.SymList.Items[i];
-              specializest.SymList.Add(tempst.SymList.NameOfIndex(i),item);
-              tsym(item).Owner:=specializest;
-              tempst.SymList.Extract(item);
-            end;
+            for i:=0 to tempst.SymList.Count-1 do
+              begin
+                item:=tempst.SymList.Items[i];
+                specializest.SymList.Add(tempst.SymList.NameOfIndex(i),item);
+                tsym(item).Owner:=specializest;
+                tempst.SymList.Extract(item);
+              end;
 
 
-            for i:=0 to tempst.DefList.Count-1 do begin
-              item:=tempst.DefList.Items[i];
-              specializest.DefList.Add(item);
-              tdef(item).owner:=specializest;
-              tempst.DefList.Extract(item);
-            end;
+            for i:=0 to tempst.DefList.Count-1 do
+              begin
+                item:=tempst.DefList.Items[i];
+                specializest.DefList.Add(item);
+                tdef(item).owner:=specializest;
+                tempst.DefList.Extract(item);
+              end;
 
 
             tempst.free;
             tempst.free;