*** empty log message ***

This commit is contained in:
John Wiegley 2004-04-10 12:25:17 +00:00
parent 9ffdff9510
commit 31dafc3c16

View file

@ -201,8 +201,7 @@ void print_register(const std::string& acct_name, std::ostream& out,
for (entries_list_iterator i = main_ledger->entries.begin(); for (entries_list_iterator i = main_ledger->entries.begin();
i != main_ledger->entries.end(); i != main_ledger->entries.end();
i++) { i++) {
if ((! have_beginning && ! have_ending && ! have_date_mask && if ((cleared_only && ! (*i)->cleared) ||
! (cleared_only ? (*i)->cleared : ! (*i)->cleared)) ||
! matches_date_range(*i) || ! (*i)->matches(regexps)) ! matches_date_range(*i) || ! (*i)->matches(regexps))
continue; continue;