diff options
-rw-r--r-- | MLKLexicalEnvironment.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MLKLexicalEnvironment.m b/MLKLexicalEnvironment.m index 723c955..91ff351 100644 --- a/MLKLexicalEnvironment.m +++ b/MLKLexicalEnvironment.m @@ -125,7 +125,7 @@ static MLKLexicalEnvironment *global_environment; || [_variables environmentForSymbol:symbol] == global_environment->_variables) { id *cell = [[MLKLexicalContext globalContext] bindingCellForSymbol:symbol]; - [*cell setValue:value forSymbol:symbol]; + [*cell setValue:value]; } else { @@ -138,7 +138,7 @@ static MLKLexicalEnvironment *global_environment; if (self == global_environment) { id *cell = [[MLKLexicalContext globalContext] bindingCellForSymbol:symbol]; - [*cell setValue:value forSymbol:symbol]; + [*cell setValue:value]; } else { |