diff options
author | John Wiegley <johnw@newartisans.com> | 2009-06-21 18:07:27 +0100 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-06-21 18:07:27 +0100 |
commit | 521b935aa8ef68ac3a8a1fe1a37eed39b41eec95 (patch) | |
tree | b7e482b7ea2d7725387046fdd6523e0f15f1dfa3 /src/session.cc | |
parent | 7287aad336161eb9a143f188c92d462e62051374 (diff) | |
download | fork-ledger-521b935aa8ef68ac3a8a1fe1a37eed39b41eec95.tar.gz fork-ledger-521b935aa8ef68ac3a8a1fe1a37eed39b41eec95.tar.bz2 fork-ledger-521b935aa8ef68ac3a8a1fe1a37eed39b41eec95.zip |
Restored --percent option, added baseline test
Diffstat (limited to 'src/session.cc')
-rw-r--r-- | src/session.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/session.cc b/src/session.cc index 2ae09e21..6b891e1b 100644 --- a/src/session.cc +++ b/src/session.cc @@ -81,6 +81,12 @@ session_t::session_t() commodity->add_flags(COMMODITY_BUILTIN | COMMODITY_NOMARKET); else assert(false); + + // Add a "percentile" commodity + if (commodity_t * commodity = commodity_pool->create("%")) + commodity->add_flags(COMMODITY_BUILTIN | COMMODITY_NOMARKET); + else + assert(false); } std::size_t session_t::read_journal(std::istream& in, |