summaryrefslogtreecommitdiff
path: root/MLKInterpretedClosure.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-04 16:20:18 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-04 16:20:18 +0200
commita4c9f5bd436dae1d99845f50da55bae733129f56 (patch)
tree22a1718222ab8d76f928cfaa4740442a4d43c1fd /MLKInterpretedClosure.m
parenta0b4d1eafa4312b5970f7268441d848be5231e7b (diff)
Add fixnum-aware macros LRETAIN, LRELEASE, LDESTROY, LAUTORELEASE, LASSIGN_COPY, and LASSIGN.
Diffstat (limited to 'MLKInterpretedClosure.m')
-rw-r--r--MLKInterpretedClosure.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/MLKInterpretedClosure.m b/MLKInterpretedClosure.m
index 9f76cc6..8b2fd9b 100644
--- a/MLKInterpretedClosure.m
+++ b/MLKInterpretedClosure.m
@@ -44,10 +44,10 @@ static MLKSymbol *PROGN;
environment:(MLKLexicalEnvironment *)lexenv
{
self = [super init];
- ASSIGN (bodyForm, [MLKCons cons:PROGN with:forms]);
- ASSIGN (context, lexctx);
- ASSIGN (environment, lexenv);
- ASSIGN (lambdaListName, symbol);
+ LASSIGN (bodyForm, [MLKCons cons:PROGN with:forms]);
+ LASSIGN (context, lexctx);
+ LASSIGN (environment, lexenv);
+ LASSIGN (lambdaListName, symbol);
return self;
}