summaryrefslogtreecommitdiff
path: root/src/session.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/session.h')
-rw-r--r--src/session.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/session.h b/src/session.h
index 3c441ef1..c7633a88 100644
--- a/src/session.h
+++ b/src/session.h
@@ -71,6 +71,7 @@ public:
optional<path> init_file;
optional<path> cache_file;
optional<path> price_db;
+ optional<path> pager_path;
bool next_price_db_from_command_line;
bool saw_price_db_from_command_line;
@@ -234,6 +235,11 @@ See LICENSE file included with the distribution for details and disclaimer.";
data_files.push_back(args[0].as_string());
return true;
}
+
+ value_t option_pager_(call_scope_t& args) { // :
+ pager_path = args[0].as_string();
+ return true;
+ }
};
/**