summaryrefslogtreecommitdiff
path: root/src/textual.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-02-27 12:38:39 -0600
committerJohn Wiegley <johnw@newartisans.com>2012-02-27 12:38:39 -0600
commitbee748cc930a18f8d92134c6eaf75a023c99fa9d (patch)
treebde3caa7cf7d8b5c2c26c531ae93227ecdec8243 /src/textual.cc
parent9240403011f275c2a2b6b02141635359a8a6ae17 (diff)
downloadfork-ledger-bee748cc930a18f8d92134c6eaf75a023c99fa9d.tar.gz
fork-ledger-bee748cc930a18f8d92134c6eaf75a023c99fa9d.tar.bz2
fork-ledger-bee748cc930a18f8d92134c6eaf75a023c99fa9d.zip
Added a TODO comment
Diffstat (limited to 'src/textual.cc')
-rw-r--r--src/textual.cc2
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);
}