From 966b6fc359bacad6b22e79fd5afbec0ea80e8d6a Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 19 Jul 2011 23:29:31 -0500 Subject: Lookup probable accounts in reverse historical order Fixes #510 --- src/draft.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/draft.cc') diff --git a/src/draft.cc b/src/draft.cc index ba78fc42..ca2d35df 100644 --- a/src/draft.cc +++ b/src/draft.cc @@ -245,12 +245,12 @@ xact_t * draft_t::insert(journal_t& journal) if (tmpl->payee_mask.empty()) throw std::runtime_error(_("'xact' command requires at least a payee")); - xact_t * matching = NULL; - + xact_t * matching = NULL; std::auto_ptr added(new xact_t); - xacts_iterator xi(journal); - if (xact_t * xact = lookup_probable_account(tmpl->payee_mask.str(), xi).first) { + if (xact_t * xact = + lookup_probable_account(tmpl->payee_mask.str(), journal.xacts.rbegin(), + journal.xacts.rend()).first) { DEBUG("draft.xact", "Found payee by lookup: transaction on line " << xact->pos->beg_line); matching = xact; -- cgit v1.2.3