diff options
author | John Wiegley <johnw@newartisans.com> | 2010-09-05 01:38:47 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-09-05 01:38:47 -0400 |
commit | e162455ebb545ea33580e58f52ebe424ef9e68fa (patch) | |
tree | df9c98fb39f31b9003db07d7806815bf71031a2d /src/report.cc | |
parent | 9fcf48482626f20151d75a2ebb81371b45d4540a (diff) | |
download | fork-ledger-e162455ebb545ea33580e58f52ebe424ef9e68fa.tar.gz fork-ledger-e162455ebb545ea33580e58f52ebe424ef9e68fa.tar.bz2 fork-ledger-e162455ebb545ea33580e58f52ebe424ef9e68fa.zip |
Minor simplifications to valexpr parser
The most significant change is the way CONS sequences are parsed, and
that now instead of =/:=, the operators are ==/=.
Diffstat (limited to 'src/report.cc')
-rw-r--r-- | src/report.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/report.cc b/src/report.cc index aaf5270a..5c7bf01d 100644 --- a/src/report.cc +++ b/src/report.cc @@ -561,6 +561,7 @@ value_t report_t::fn_print(call_scope_t& args) { for (std::size_t i = 0; i < args.size(); i++) args[i].print(output_stream); + static_cast<std::ostream&>(output_stream) << std::endl; return true; } |