Browse Source

* fixed indentation in nonlocalvars()

git-svn-id: trunk@34285 -
Jonas Maebe 9 years ago
parent
commit
8d1e8ea203
1 changed files with 4 additions and 3 deletions
  1. 4 3
      compiler/ncal.pas

+ 4 - 3
compiler/ncal.pas

@@ -4513,9 +4513,10 @@ implementation
             { statics can only be modified by functions in the same unit }
              ((tloadnode(n).symtable.symtabletype = staticsymtable) and
               (tloadnode(n).symtable = TSymtable(arg))) or
-              { if the addr of the symbol is taken somewhere, it can be also non-local }
-              (tabstractvarsym(tloadnode(n).symtableentry).addr_taken)
-           )) or
+             { if the addr of the symbol is taken somewhere, it can be also non-local }
+             (tabstractvarsym(tloadnode(n).symtableentry).addr_taken)
+            )
+           ) or
            ((n.nodetype = subscriptn) and
             (tsubscriptnode(n).vs.owner.symtabletype = ObjectSymtable)) then
           result := fen_norecurse_true;