*** empty log message ***

This commit is contained in:
John Wiegley 2006-02-25 13:40:14 +00:00
parent f819ba6c10
commit e75bb1f71f
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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)