diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-24 20:37:50 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-24 20:37:50 +0200 |
commit | 0194a2ea2867c7e04b002f3113eaf870a4313a50 (patch) | |
tree | 9789b8e68d107a92411826ea658a1a7e16fd9716 | |
parent | 881cc951c5b53aa2d120b1545d0f338d5b180372 (diff) |
MLKInterpretedClosure: Handle null argument lists correctly.
-rw-r--r-- | MLKInterpretedClosure.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKInterpretedClosure.m b/MLKInterpretedClosure.m index 8389bdb..98ffc07 100644 --- a/MLKInterpretedClosure.m +++ b/MLKInterpretedClosure.m @@ -53,7 +53,7 @@ static MLKSymbol *PROGN; MLKLexicalEnvironment *new_environment = [MLKLexicalEnvironment environmentWithParent:_environment - variables:[NSDictionary dictionaryWithObject:arglist + variables:[NSDictionary dictionaryWithObject:nullify(arglist) forKey:nullify([_form lambdaListName])] functions:nil]; |