summaryrefslogtreecommitdiff
path: root/cli/generator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/generator.cxx')
-rw-r--r--cli/generator.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/generator.cxx b/cli/generator.cxx
index 1ebde25..8d14bd7 100644
--- a/cli/generator.cxx
+++ b/cli/generator.cxx
@@ -310,14 +310,14 @@ generate (options const& ops, semantics::cli_unit& unit, path const& p)
//
ifstream prologue, epilogue;
{
- string file (ops.man_prologue ());
+ string file (ops.man_prologue_file ());
if (!file.empty ())
open (prologue, file);
}
{
- string file (ops.man_epilogue ());
+ string file (ops.man_epilogue_file ());
if (!file.empty ())
open (epilogue, file);
@@ -368,14 +368,14 @@ generate (options const& ops, semantics::cli_unit& unit, path const& p)
//
ifstream prologue, epilogue;
{
- string file (ops.html_prologue ());
+ string file (ops.html_prologue_file ());
if (!file.empty ())
open (prologue, file);
}
{
- string file (ops.html_epilogue ());
+ string file (ops.html_epilogue_file ());
if (!file.empty ())
open (epilogue, file);