Monotone-Parent: 6f84a669db2d05b99c1720fe9558575f53130156

Monotone-Revision: 77f74fbd8da16c35f71279bd179f0afad94285b5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-12-22T23:04:21
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2009-12-22 23:04:21 +00:00
parent ab3c3f3599
commit 215282e080
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2009-12-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* VSSaxDriver.m (_endComponent:value:): worked-around the lameness
in -[GSCInlineString isEqualToString:] by having "mtName"
compare against "expectedName" instead.
2009-03-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* VSStringFormatter.[hm]: removed useless module.

View File

@ -660,7 +660,7 @@ static NSCharacterSet *whitespaceCharSet = nil;
NSString *expectedName;
expectedName = [(VSSaxTag *)[cardStack lastObject] tagName];
if (![expectedName isEqualToString: mtName])
if (![mtName isEqualToString: expectedName])
{
NSString *s;
@ -706,8 +706,8 @@ static NSCharacterSet *whitespaceCharSet = nil;
NSMutableArray *tagAttributes;
NSRange r, todoRange;
unsigned length;
#if 0
#if 0
if (debugOn)
NSLog(@"%s: parse line: '%@'", __PRETTY_FUNCTION__, _line);
#endif