summaryrefslogtreecommitdiff
path: root/src/report.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2019-03-15 16:30:28 -0700
committerJohn Wiegley <johnw@newartisans.com>2019-03-15 17:30:46 -0700
commitf0dacdb22f2888be104711d9092ca43d770965f2 (patch)
treef2ae7a8926ee581d39a558d6c4c83d3e7c1de9cd /src/report.cc
parentd511d671fcbb517ec474d4355a4c1568ee2fbb09 (diff)
downloadfork-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.cc6
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")) {