Fix small parsing error

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18999 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2004-04-02 06:57:15 +00:00
parent 93a7cd7073
commit 75f24d927f
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-04-02 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/AGSParser.m: Fix error parsing sequence of protocol names
separated by commas.
2004-03-31 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSKeyedArchiver.m: Encode archive version as a number rather

View file

@ -1240,11 +1240,14 @@
{
NSString *p;
pos++;
do
{
pos++;
p = [self parseIdentifier];
[a addObject: p];
if (p != nil)
{
[a addObject: p];
}
}
while ([self parseSpace] < length && buffer[pos] == ',');
pos++;