summaryrefslogtreecommitdiff
path: root/MLKInterpretedClosure.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-27 14:42:33 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-27 14:42:33 +0200
commit189d02b12aa33fc18eaff9558675d9fa9d6ba668 (patch)
treebbaa136bcb5961452e89f103fa907cff65a9863e /MLKInterpretedClosure.h
parentcb23a76bbd3b7b1ccf4a5ec8894437e449a9047d (diff)
MLKInterpreter: Fix APPLY and %LAMBDA.
Diffstat (limited to 'MLKInterpretedClosure.h')
-rw-r--r--MLKInterpretedClosure.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/MLKInterpretedClosure.h b/MLKInterpretedClosure.h
index 5d1ac25..942a9b8 100644
--- a/MLKInterpretedClosure.h
+++ b/MLKInterpretedClosure.h
@@ -33,10 +33,10 @@
MLKLexicalEnvironment *environment;
}
--(id) initWithBodyForm:(id)form
- lambdaListName:(MLKSymbol *)symbol
- context:(MLKLexicalContext *)lexctx
- environment:(MLKLexicalEnvironment *)lexenv;
+-(id) initWithBodyForms:(id)forms
+ lambdaListName:(MLKSymbol *)symbol
+ context:(MLKLexicalContext *)lexctx
+ environment:(MLKLexicalEnvironment *)lexenv;
-(NSArray *) applyToArray:(NSArray *)arguments;