diff options
-rw-r--r-- | main.cc | 2 | ||||
-rw-r--r-- | valexpr.cc | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -69,10 +69,8 @@ int parse_and_report(int argc, char * argv[], char * envp[]) config.process_option("file", p); if (const char * p = std::getenv("LEDGER_INIT")) config.process_option("init-file", p); -#if 0 if (const char * p = std::getenv("PRICE_HIST")) config.process_option("price-db", p); -#endif if (const char * p = std::getenv("PRICE_EXP")) config.process_option("price-exp", p); #endif @@ -348,6 +348,8 @@ void value_expr_t::compute(value_t& result, const details_t& details) const if (right) { assert(right->kind == O_ARG); switch (right->left->kind) { + case F_NOW: + break; // already set to now case DATE: if (details.xact && transaction_has_xdata(*details.xact) && transaction_xdata_(*details.xact).date) @@ -377,6 +379,8 @@ void value_expr_t::compute(value_t& result, const details_t& details) const std::time_t moment = terminus; if (right) { switch (right->kind) { + case F_NOW: + break; // already set to now case DATE: if (details.xact && transaction_has_xdata(*details.xact) && transaction_xdata_(*details.xact).date) |