mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Bugfixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15163 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d3da613a53
commit
bb19b604d0
4 changed files with 22 additions and 6 deletions
|
@ -1805,9 +1805,11 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
|
|||
}
|
||||
else if ([n isEqual: @"example"] == YES)
|
||||
{
|
||||
[buf appendString: @"<pre>\n"];
|
||||
[self outputText: [node firstChild] to: buf];
|
||||
[buf appendString: @"\n</pre>\n"];
|
||||
GSXMLNode *c = [node firstChild];
|
||||
|
||||
[buf appendString: @"<pre>"];
|
||||
[self outputText: c to: buf];
|
||||
[buf appendString: @"</pre>\n"];
|
||||
return [node next];
|
||||
}
|
||||
else if ([n isEqual: @"embed"] == YES)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue