From c79fd9e72de4c2355ddb867bf269973bdd2cfd00 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 2 Jun 2009 19:14:46 +0100 Subject: Added new debug option --options This reports which options are in place before invoking a command, and where exactly each option value came from. --- src/session.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/session.cc') diff --git a/src/session.cc b/src/session.cc index bbc196df..7727c467 100644 --- a/src/session.cc +++ b/src/session.cc @@ -71,9 +71,9 @@ session_t::session_t() TRACE_CTOR(session_t, ""); if (const char * home_var = std::getenv("HOME")) - HANDLER(price_db_).on((path(home_var) / ".pricedb").string()); + HANDLER(price_db_).on(none, (path(home_var) / ".pricedb").string()); else - HANDLER(price_db_).on(path("./.pricedb").string()); + HANDLER(price_db_).on(none, path("./.pricedb").string()); // Add time commodity conversions, so that timelog's may be parsed // in terms of seconds, but reported as minutes or hours. -- cgit v1.2.3