Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
itfrombit committed Sep 17, 2011
1 parent 1c8f544 commit 6e351ca
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions objc/Nu.m
Expand Up @@ -7033,11 +7033,11 @@ @interface Nu_apply_operator : NuOperator {}
@implementation Nu_apply_operator
- (id) prependCell:(id)item withSymbol:(id)symbol
{
id qitem = [[[NuCell alloc] init] autorelease];
[qitem setCar:symbol];
[qitem setCdr:[[[NuCell alloc] init] autorelease]];
[[qitem cdr] setCar:item];
return qitem;
id qitem = [[[NuCell alloc] init] autorelease];
[qitem setCar:symbol];
[qitem setCdr:[[[NuCell alloc] init] autorelease]];
[[qitem cdr] setCar:item];
return qitem;
}

- (id) callWithArguments:(id)cdr context:(NSMutableDictionary *)context
Expand All @@ -7064,13 +7064,13 @@ - (id) callWithArguments:(id)cdr context:(NSMutableDictionary *)context

id item = [[cursor car] evalWithContext:context];
id qitem = [self prependCell:item withSymbol:quoteSymbol];
[qargs_cursor setCar:qitem];
cursor = [cursor cdr];
[qargs_cursor setCar:qitem];
cursor = [cursor cdr];
}

// The rest of the arguments are in a list
id args = [cursor evalWithContext:context];
cursor = args;
cursor = args;

while (cursor && (cursor != Nu__null)) {
if (qargs == Nu__null) {
Expand All @@ -7083,7 +7083,7 @@ - (id) callWithArguments:(id)cdr context:(NSMutableDictionary *)context
}
id item = [cursor car];

id qitem = [self prependCell:item withSymbol:quoteSymbol];
id qitem = [self prependCell:item withSymbol:quoteSymbol];
[qargs_cursor setCar:qitem];
cursor = [cursor cdr];
}
Expand Down

0 comments on commit 6e351ca

Please sign in to comment.