mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Minor fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15421 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
35d91cf9d5
commit
fc64d61498
3 changed files with 8 additions and 6 deletions
|
@ -10,6 +10,8 @@
|
|||
* Source/externs.m: Remove map and hash table stuff
|
||||
* Headers/gnustep/base/NSMapTable.h: Update for macosx compatibility.
|
||||
* Headers/gnustep/base/NSHashTable.h: Ditto
|
||||
* Tools/AGSHtml.m: Fix typo ... excess semicolon in constant output.
|
||||
* Tools/AGSParser.m: Fix error failing to find comment for constants.
|
||||
|
||||
2002-12-30 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
|
|
|
@ -558,7 +558,7 @@ static NSMutableSet *textNodes = nil;
|
|||
nam = [prop objectForKey: @"name"];
|
||||
str = [prop objectForKey: @"type"];
|
||||
str = [self typeRef: str];
|
||||
str = [str stringByAppendingFormat: @" %@;", nam];
|
||||
str = [str stringByAppendingFormat: @" %@", nam];
|
||||
|
||||
/*
|
||||
* Output heading.
|
||||
|
|
|
@ -1383,12 +1383,12 @@
|
|||
{
|
||||
[self parseComment];
|
||||
}
|
||||
if (comment != nil)
|
||||
{
|
||||
[self appendComment: comment to: d];
|
||||
}
|
||||
DESTROY(comment);
|
||||
}
|
||||
if (comment != nil)
|
||||
{
|
||||
[self appendComment: comment to: d];
|
||||
}
|
||||
DESTROY(comment);
|
||||
|
||||
RELEASE(arp);
|
||||
if (inArgList == NO)
|
||||
|
|
Loading…
Reference in a new issue