diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-31 01:21:24 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-31 01:21:30 -0400 |
commit | 6983e6a38a6d06fd82667301940c976d56cb7ed1 (patch) | |
tree | 0c6fbdc936419b723da4313c0b730bce266a73fe /src/textual.cc | |
parent | c5795c66c9044c347332812498b888787e0edd4a (diff) | |
download | fork-ledger-6983e6a38a6d06fd82667301940c976d56cb7ed1.tar.gz fork-ledger-6983e6a38a6d06fd82667301940c976d56cb7ed1.tar.bz2 fork-ledger-6983e6a38a6d06fd82667301940c976d56cb7ed1.zip |
Fixed error context output.
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textual.cc b/src/textual.cc index 55e13445..527d49af 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -198,8 +198,8 @@ void textual_parser_t::instance_t::parse() << file_context(instance->pathname, instance->linenum - 1) << "':"); } - add_error_context("While parsing file '" - << file_context(pathname, linenum - 1) << "':"); + add_error_context("While parsing file " + << file_context(pathname, linenum - 1) << "\n"); std::cout.flush(); std::cerr << ledger::error_context() |