Fixed expresion duplicating.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@19648 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Stefan Urbanek 2004-06-28 21:11:50 +00:00
parent bfaafcf06d
commit fe3e1bd17d
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2004 Jun 28
* Fixed expresion duplicating.
2004 Jun 27 Stefan Urbanek
* Version 0.8.1

View file

@ -597,7 +597,7 @@ extern int STCparse(void *context);
if(array)
{
BOOL first = YES;
enumerator = [array objectEnumerator];
while((expr = [enumerator nextObject]))
{
@ -614,8 +614,6 @@ extern int STCparse(void *context);
{
first = NO;
}
[self compileExpression:expr];
}
}