* Source/NSXMLNode.m (-description): Remove trailing newline. This

should fix #36976.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35323 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2012-07-27 15:35:39 +00:00
parent c257d44725
commit 27a33dbedb
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-07-27 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSXMLNode.m (-description): Remove trailing newline. This
should fix #36976.
2012-07-11 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSFFCallInvocation.m:

View file

@ -1177,7 +1177,7 @@ execute_xpath(xmlNodePtr node, NSString *xpath_exp, NSDictionary *constants,
- (NSString*) description
{
return [NSString stringWithFormat:@"<%@ %@ %d>%@\n",
return [NSString stringWithFormat:@"<%@ %@ %d>%@",
NSStringFromClass([self class]),
[self name], [self kind], [self XMLString]];
}