From 74456d89b52953d95fd2dd9314f3ace4b37556fa Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 15 Feb 2005 03:31:04 +0000 Subject: (parse_and_report): Rearranged some code for efficiency's sake. --- main.cc | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/main.cc b/main.cc index 6bd1201f..905b276f 100644 --- a/main.cc +++ b/main.cc @@ -434,20 +434,22 @@ def vmax(d, val):\n\ else formatter = base_formatter; - formatter = chain_xact_handlers(command, formatter, journal.get(), - journal->master, formatter_ptrs); - - if (command == "e") - walk_transactions(new_entry->transactions, *formatter); - else if (command == "P" || command == "D") - walk_commodities(commodity_t::commodities, *formatter); - else if (command == "w") + if (command == "w") { write_textual_journal(*journal, *arg, *formatter, *out); - else - walk_entries(journal->entries, *formatter); + } else { + formatter = chain_xact_handlers(command, formatter, journal.get(), + journal->master, formatter_ptrs); + + if (command == "e") + walk_transactions(new_entry->transactions, *formatter); + else if (command == "P" || command == "D") + walk_commodities(commodity_t::commodities, *formatter); + else + walk_entries(journal->entries, *formatter); - if (command != "P" && command != "D") - formatter->flush(); + if (command != "P" && command != "D") + formatter->flush(); + } // If we are generating a reconcile report, determine the final set // of transactions. -- cgit v1.2.3