diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-04 20:46:45 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-04 20:46:45 -0400 |
commit | 7d628d88ff54ac08df499406bb87b87c3f8989a3 (patch) | |
tree | dff9bc75f6830425754a0bdc011a28b7c291bde5 /src/work.cc | |
parent | 863b5d814443eb791c2dd07250ac0ae29054adb0 (diff) | |
download | fork-ledger-7d628d88ff54ac08df499406bb87b87c3f8989a3.tar.gz fork-ledger-7d628d88ff54ac08df499406bb87b87c3f8989a3.tar.bz2 fork-ledger-7d628d88ff54ac08df499406bb87b87c3f8989a3.zip |
Moved the --pager option to the session object, rather than the report object.
Diffstat (limited to 'src/work.cc')
-rw-r--r-- | src/work.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/work.cc b/src/work.cc index e4cee9e6..06dae001 100644 --- a/src/work.cc +++ b/src/work.cc @@ -225,7 +225,7 @@ void normalize_report_options(report_t& report, const string& verb) void create_output_stream(report_t& report) { - report.output_stream.initialize(report.output_file, report.pager_path); + report.output_stream.initialize(report.output_file, report.session.pager_path); } void invoke_command_verb(report_t& report, |