Browse Source

* Fixed IsEmptyStr

git-svn-id: trunk@9775 -
michael 17 years ago
parent
commit
41cce2fe42
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/objpas/strutils.pp

+ 1 - 1
rtl/objpas/strutils.pp

@@ -908,7 +908,7 @@ begin
   Result:=True;
   while Result and (i<=l) do
     begin
-    Result:=Not (S[i] in EmptyChars);
+    Result:=(S[i] in EmptyChars);
     Inc(i);
     end;
 end;