diff options
author | John Wiegley <johnw@newartisans.com> | 2012-02-27 12:38:39 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-27 12:38:39 -0600 |
commit | bee748cc930a18f8d92134c6eaf75a023c99fa9d (patch) | |
tree | bde3caa7cf7d8b5c2c26c531ae93227ecdec8243 /src/textual.cc | |
parent | 9240403011f275c2a2b6b02141635359a8a6ae17 (diff) | |
download | fork-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.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); } |