* Fixed IsEmptyStr

git-svn-id: trunk@9775 -
This commit is contained in:
michael 2008-01-16 16:15:05 +00:00
parent 3852af4afb
commit 41cce2fe42

View File

@ -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;