Minor bugfix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15306 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-12-17 10:04:46 +00:00
parent 5bbbb1b94c
commit f904135bc3
2 changed files with 9 additions and 5 deletions

View file

@ -1,3 +1,7 @@
2002-12-17 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/AGSIndex.m: Fix error indexing vararg methods.
2002-12-12 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/gnustep/base/NSDistributedNotificationCenter.h: add type

View file

@ -357,17 +357,17 @@ setDirectory(NSMutableDictionary *dict, NSString *path)
t = [t next];
}
}
else if ([[tmp name] isEqual: @"arg"] == NO)
{
children = tmp;
break;
}
else if ([[tmp name] isEqual: @"vararg"] == YES)
{
sel = [sel stringByAppendingString: @",..."];
children = [tmp next];
break;
}
else if ([[tmp name] isEqual: @"arg"] == NO)
{
children = tmp;
break;
}
}
tmp = [tmp next];
}