mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 17:12:03 +00:00
fix suggested vy Daniel Santos
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34253 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
086a4cd7f6
commit
39d1a9f55f
2 changed files with 129 additions and 128 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-12-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Tools/AGSParser.m: Fix suggested by Daniel Santos (ifStack was
|
||||||
|
created with incorrect initial content).
|
||||||
|
|
||||||
2011-12-06 Richard Frith-Macdonald <rfm@gnu.org>
|
2011-12-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* configure.ac: use pkg-config for libffi if/when available.
|
* configure.ac: use pkg-config for libffi if/when available.
|
||||||
|
|
|
@ -175,7 +175,6 @@ in the returned dictionary. */
|
||||||
- (id) init
|
- (id) init
|
||||||
{
|
{
|
||||||
NSMutableCharacterSet *m;
|
NSMutableCharacterSet *m;
|
||||||
NSMutableSet *s;
|
|
||||||
|
|
||||||
m = [[NSCharacterSet controlCharacterSet] mutableCopy];
|
m = [[NSCharacterSet controlCharacterSet] mutableCopy];
|
||||||
[m addCharactersInString: @" "];
|
[m addCharactersInString: @" "];
|
||||||
|
@ -194,9 +193,7 @@ in the returned dictionary. */
|
||||||
warn = [[NSUserDefaults standardUserDefaults] boolForKey: @"Warn"];
|
warn = [[NSUserDefaults standardUserDefaults] boolForKey: @"Warn"];
|
||||||
documentInstanceVariables = YES;
|
documentInstanceVariables = YES;
|
||||||
ifStack = [[NSMutableArray alloc] initWithCapacity: 4];
|
ifStack = [[NSMutableArray alloc] initWithCapacity: 4];
|
||||||
s = [NSMutableSet new];
|
[ifStack addObject: [NSDictionary dictionary]];
|
||||||
[ifStack addObject: s];
|
|
||||||
RELEASE(s);
|
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3501,7 +3498,6 @@ fail:
|
||||||
{
|
{
|
||||||
break; // may only join version macros with &&
|
break; // may only join version macros with &&
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
[ifStack addObject: top];
|
[ifStack addObject: top];
|
||||||
RELEASE(top);
|
RELEASE(top);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue