diff options
author | John Wiegley <johnw@newartisans.com> | 2019-03-15 16:30:28 -0700 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2019-03-15 17:30:46 -0700 |
commit | f0dacdb22f2888be104711d9092ca43d770965f2 (patch) | |
tree | f2ae7a8926ee581d39a558d6c4c83d3e7c1de9cd /src/report.cc | |
parent | d511d671fcbb517ec474d4355a4c1568ee2fbb09 (diff) | |
download | fork-ledger-f0dacdb22f2888be104711d9092ca43d770965f2.tar.gz fork-ledger-f0dacdb22f2888be104711d9092ca43d770965f2.tar.bz2 fork-ledger-f0dacdb22f2888be104711d9092ca43d770965f2.zip |
Remove the 'org' command, which was always a hack to begin with
Diffstat (limited to 'src/report.cc')
-rw-r--r-- | src/report.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/report.cc b/src/report.cc index 13e6a61f..cc165184 100644 --- a/src/report.cc +++ b/src/report.cc @@ -48,7 +48,6 @@ #include "convert.h" #include "ptree.h" #include "emacs.h" -#include "org.h" namespace ledger { @@ -1672,11 +1671,6 @@ expr_t::ptr_op_t report_t::lookup(const symbol_t::kind_t kind, if (is_eq(p, "lisp")) return POSTS_REPORTER(new format_emacs_posts(output_stream)); break; - case 'o': - if (is_eq(p, "org")) - return POSTS_REPORTER(new posts_to_org_table - (*this, maybe_format(HANDLER(prepend_format_)))); - break; case 'p': if (*(p + 1) == '\0' || is_eq(p, "print")) { |