diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-24 20:37:23 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-24 20:37:23 +0200 |
commit | 881cc951c5b53aa2d120b1545d0f338d5b180372 (patch) | |
tree | fe1acd2f0ac80988559ba604f8d395da643c36db | |
parent | 4cf5aceb8f3b33ebda40225beb054b834ddfa4af (diff) |
MLKMultipleValueCallForm: Make _functionForm an MLKForm instead of an id.
-rw-r--r-- | MLKForm.h | 2 | ||||
-rw-r--r-- | MLKForm.m | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -236,7 +236,7 @@ @interface MLKMultipleValueCallForm : MLKBodyForm { - id _functionForm; + MLKForm *_functionForm; } @end @@ -678,7 +678,9 @@ -(id) complete { self = [super complete]; - LASSIGN (_functionForm, [_tail car]); + LASSIGN (_functionForm, [MLKForm formWithObject:[_tail car] + inContext:_context + forCompiler:_compiler]); [self processBody:[_tail cdr]]; return self; } |