diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-31 17:54:40 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-10-31 17:54:40 -0400 |
commit | ead642c7fa5ff48ac95c059bcf92ae32ffd19463 (patch) | |
tree | ce5af5674f8645874f4910be03c0ff08c1719ed9 | |
parent | 3adfaf0eaa1c181823f4a10dbf0149c11ab89e5b (diff) | |
download | fork-ledger-ead642c7fa5ff48ac95c059bcf92ae32ffd19463.tar.gz fork-ledger-ead642c7fa5ff48ac95c059bcf92ae32ffd19463.tar.bz2 fork-ledger-ead642c7fa5ff48ac95c059bcf92ae32ffd19463.zip |
Commented out dependency on session_t (for now)
-rw-r--r-- | src/textual.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/textual.cc b/src/textual.cc index 0eb00292..cbd67352 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -486,6 +486,7 @@ void instance_t::option_directive(char * line) *p++ = '\0'; } +#if 0 if (! process_option(pathname.string(), line + 2, scope, p, line) && ! dynamic_cast<session_t *>(&scope)) { if (std::strlen(line + 2) == 1) @@ -493,6 +494,9 @@ void instance_t::option_directive(char * line) else throw_(option_error, _("Illegal option --%1") << line + 2); } +#else + process_option(pathname.string(), line + 2, scope, p, line); +#endif } void instance_t::automated_xact_directive(char * line) |