diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-21 19:45:13 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-21 19:45:13 -0400 |
commit | a577e8c48ebe3b540a6833e1d37025d53c8a42a7 (patch) | |
tree | 5c6ba4c5ab8200cd4187892189af90594c962bd9 /src/report.cc | |
parent | dc63429785fb677f5997a84ee7dd1dbc03f1e127 (diff) | |
download | ledger-a577e8c48ebe3b540a6833e1d37025d53c8a42a7.tar.gz ledger-a577e8c48ebe3b540a6833e1d37025d53c8a42a7.tar.bz2 ledger-a577e8c48ebe3b540a6833e1d37025d53c8a42a7.zip |
Added a new --raw option, for use with print
Diffstat (limited to 'src/report.cc')
-rw-r--r-- | src/report.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/report.cc b/src/report.cc index 95e5fa93..3112a98e 100644 --- a/src/report.cc +++ b/src/report.cc @@ -530,8 +530,8 @@ expr_t::ptr_op_t report_t::lookup(const string& name) if (*(q + 1) == '\0' || is_eq(q, "print")) return WRAP_FUNCTOR (reporter<> - (new format_xacts(*this, report_format(HANDLER(print_format_))), - *this)); + (new format_xacts(*this, report_format(HANDLER(print_format_)), + HANDLED(raw)), *this)); else if (is_eq(q, "prices")) return expr_t::op_t::wrap_functor (reporter<xact_t, xact_handler_ptr, &report_t::commodities_report> |