diff options
author | John Wiegley <johnw@newartisans.com> | 2009-03-06 02:52:14 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-03-06 02:52:14 -0400 |
commit | 4a0f5f9034dc24c7ae5f0464d407f4cf2279558b (patch) | |
tree | b7a4fa4659d366b34e8ecb25267ec2ea9c11f93c /src/report.cc | |
parent | 80c51bf0a524ed80c0c248374a75e7fc392e1a3d (diff) | |
parent | aff490534a8e7826d89bbc75c6885b4a6bff4d17 (diff) | |
download | fork-ledger-4a0f5f9034dc24c7ae5f0464d407f4cf2279558b.tar.gz fork-ledger-4a0f5f9034dc24c7ae5f0464d407f4cf2279558b.tar.bz2 fork-ledger-4a0f5f9034dc24c7ae5f0464d407f4cf2279558b.zip |
Merge branch 'next'
Diffstat (limited to 'src/report.cc')
-rw-r--r-- | src/report.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/report.cc b/src/report.cc index 080ba433..e4eef741 100644 --- a/src/report.cc +++ b/src/report.cc @@ -196,6 +196,11 @@ value_t report_t::fn_rounded(call_scope_t& args) return args.value().rounded(); } +value_t report_t::fn_unrounded(call_scope_t& args) +{ + return args.value().unrounded(); +} + value_t report_t::fn_quantity(call_scope_t& scope) { interactive_t args(scope, "a"); @@ -606,7 +611,6 @@ option_t<report_t> * report_t::lookup_option(const char * p) OPT_CH(amount_); else OPT(tail_); else OPT(total_); - else OPT(totals); else OPT(total_data); else OPT(truncate_); else OPT(total_width_); @@ -859,6 +863,8 @@ expr_t::ptr_op_t report_t::lookup(const string& name) case 'u': if (is_eq(p, "underline")) return WRAP_FUNCTOR(fn_underline); + else if (is_eq(p, "unrounded")) + return MAKE_FUNCTOR(report_t::fn_unrounded); break; case 'w': |