diff options
author | John Wiegley <johnw@newartisans.com> | 2014-04-14 11:08:26 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2014-04-14 11:08:26 -0500 |
commit | 0d23e3d4f6ea4e9ec9a70211abb892383b80188e (patch) | |
tree | 1c2d81ce53dd00c6c06a96ea9d41984fd7e3b385 /src/textual.cc | |
parent | 57870f1be87383bf1bc3d7d9a06e411546fb6801 (diff) | |
download | fork-ledger-0d23e3d4f6ea4e9ec9a70211abb892383b80188e.tar.gz fork-ledger-0d23e3d4f6ea4e9ec9a70211abb892383b80188e.tar.bz2 fork-ledger-0d23e3d4f6ea4e9ec9a70211abb892383b80188e.zip |
Apply any outstanding deferred postings at the end of parsing
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/textual.cc b/src/textual.cc index 6f8f0492..d02e2f79 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -1925,6 +1925,9 @@ std::size_t journal_t::read_textual(parse_context_stack_t& context_stack) } TRACE_STOP(parsing_total, 1); + // Apply any deferred postings at this time + master->apply_deferred_posts(); + // These tracers were started in textual.cc TRACE_FINISH(xact_text, 1); TRACE_FINISH(xact_details, 1); |