diff options
author | John Wiegley <johnw@newartisans.com> | 2010-03-16 14:24:48 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-03-17 00:49:11 -0400 |
commit | 91f839e8279804d495adc0d33e28fd6048e72680 (patch) | |
tree | 245510f53d29f033ca358c065487dac12749983f /src | |
parent | 2f9ea3986947c552322432449e393ee9e96c7e9e (diff) | |
download | ledger-91f839e8279804d495adc0d33e28fd6048e72680.tar.gz ledger-91f839e8279804d495adc0d33e28fd6048e72680.tar.bz2 ledger-91f839e8279804d495adc0d33e28fd6048e72680.zip |
Do not implicitly sort register output
The switches the default back to the same as 2.x, which is --unsorted.
Diffstat (limited to 'src')
-rw-r--r-- | src/chain.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/chain.cc b/src/chain.cc index 03d8aead..7f5a1a07 100644 --- a/src/chain.cc +++ b/src/chain.cc @@ -112,10 +112,12 @@ post_handler_ptr chain_post_handlers(report_t& report, else handler.reset(new sort_posts(handler, report.HANDLER(sort_).str())); } +#if 0 else if (! report.HANDLED(period_) && ! report.HANDLED(unsorted)) { handler.reset(new sort_posts(handler, "date")); } +#endif // collapse_posts causes xacts with multiple posts to appear as xacts // with a subtotaled post for each commodity used. |