summaryrefslogtreecommitdiff
path: root/src/session.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-06-16 18:49:27 +0100
committerJohn Wiegley <johnw@newartisans.com>2009-06-16 18:49:27 +0100
commit3a926da4cbffe903d138f8df9f5cb33332ff1030 (patch)
treeb090a19c1d59b339c17b65e6d322889d3d76e9c8 /src/session.cc
parent849e4b2fbbfc08f62550145b61d3e2b442777c86 (diff)
downloadfork-ledger-3a926da4cbffe903d138f8df9f5cb33332ff1030.tar.gz
fork-ledger-3a926da4cbffe903d138f8df9f5cb33332ff1030.tar.bz2
fork-ledger-3a926da4cbffe903d138f8df9f5cb33332ff1030.zip
When --end is used, set a "terminus" date
This means that final balance valuations (with -V or -X) will be done in terms of the date given to --end, rather than based on the current day. Fixes 647D5DB9-DBBB-47C8-80CE-F3F70E3B0253
Diffstat (limited to 'src/session.cc')
-rw-r--r--src/session.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/session.cc b/src/session.cc
index 7727c467..2ae09e21 100644
--- a/src/session.cc
+++ b/src/session.cc
@@ -245,27 +245,12 @@ expr_t::ptr_op_t session_t::lookup(const string& name)
{
const char * p = name.c_str();
switch (*p) {
- case 'd':
- if (is_eq(p, "date"))
- return MAKE_FUNCTOR(session_t::fn_today);
- break;
-
- case 'n':
- if (is_eq(p, "now"))
- return MAKE_FUNCTOR(session_t::fn_now);
- break;
-
case 'o':
if (WANT_OPT()) { p += OPT_PREFIX_LEN;
if (option_t<session_t> * handler = lookup_option(p))
return MAKE_OPT_HANDLER(session_t, handler);
}
break;
-
- case 't':
- if (is_eq(p, "today"))
- return MAKE_FUNCTOR(session_t::fn_today);
- break;
}
// Check if they are trying to access an option's setting or value.