diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/textual.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/textual.cc b/src/textual.cc index 5b0193cb..46489778 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -915,6 +915,8 @@ void instance_t::account_directive(char * line) expr_t::EXPR_CHECK)); } else if (keyword == "eval" || keyword == "expr") { + // jww (2012-02-27): Make account into symbol scopes so that this + // can be used to override definitions within the account. bind_scope_t bound_scope(context.scope, *account); expr_t(b).calc(bound_scope); } |