Various minor bugfixes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11771 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2001-12-15 19:45:00 +00:00
parent c3c044a1c5
commit 03833293c0
3 changed files with 4 additions and 2 deletions

View file

@ -838,7 +838,7 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
[buf appendString: indent]; [buf appendString: indent];
[buf appendString: @"<h2>"]; [buf appendString: @"<h2>"];
[buf appendString: [buf appendString:
[self makeAnchor: name ofType: @"protocol" name: name]]; [self makeAnchor: unit ofType: @"protocol" name: name]];
[buf appendString: @"</h2>\n"]; [buf appendString: @"</h2>\n"];
[self outputUnit: node to: buf]; [self outputUnit: node to: buf];
unit = nil; unit = nil;

View file

@ -1046,6 +1046,8 @@ fail:
[dict setObject: methods forKey: @"Methods"]; [dict setObject: methods forKey: @"Methods"];
} }
[dict setObject: declared forKey: @"Declared"];
d = [info objectForKey: @"Protocols"]; d = [info objectForKey: @"Protocols"];
if (d == nil) if (d == nil)
{ {

View file

@ -501,8 +501,8 @@ main(int argc, char **argv, char **env)
} }
else else
{ {
sdir = [sourceDirectory stringByAppendingPathComponent: hdir];
hdir = [headerDirectory stringByAppendingPathComponent: hdir]; hdir = [headerDirectory stringByAppendingPathComponent: hdir];
sdir = [sourceDirectory stringByAppendingPathComponent: sdir];
} }
ddir = documentationDirectory; ddir = documentationDirectory;