diff options
author | John Wiegley <johnw@newartisans.com> | 2014-04-21 18:01:08 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2014-04-21 18:01:08 -0500 |
commit | 4707122eede9746b36bbaa0dab0b419e11b0433b (patch) | |
tree | 0eff485c9a765c80847a88bdb387945275282c04 | |
parent | a0c5addbbdaf472d26ae25c86ff826e509b3ee17 (diff) | |
download | fork-ledger-4707122eede9746b36bbaa0dab0b419e11b0433b.tar.gz fork-ledger-4707122eede9746b36bbaa0dab0b419e11b0433b.tar.bz2 fork-ledger-4707122eede9746b36bbaa0dab0b419e11b0433b.zip |
Initialize journal_t::no_aliases to false upon costruction
This fixes a bug introduced by ecd5097d515f53703eb5dc6096da80182c452ad9.
-rw-r--r-- | src/journal.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/journal.cc b/src/journal.cc index 804c9ee2..142b68a6 100644 --- a/src/journal.cc +++ b/src/journal.cc @@ -97,6 +97,7 @@ void journal_t::initialize() day_break = false; checking_style = CHECK_NORMAL; recursive_aliases = false; + no_aliases = false; } void journal_t::add_account(account_t * acct) |