Implement support for 'standatrds' markup.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11811 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2001-12-18 15:49:59 +00:00
parent 39514f6a99
commit 5cc86739d1
5 changed files with 251 additions and 8 deletions

View file

@ -975,7 +975,7 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
children = [node next];
if ([[children name] isEqual: @"standards"])
{
tmp = [node children];
tmp = [children children];
if (tmp != nil)
{
[buf appendString: indent];
@ -1515,7 +1515,7 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
}
if (node != nil && [[node name] isEqual: @"standards"] == YES)
{
GSXMLNode *tmp = node;
GSXMLNode *tmp = [node children];
if (tmp != nil)
{