summaryrefslogtreecommitdiff
path: root/cli/man.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-10-30 10:47:45 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-10-30 10:47:45 +0200
commit5f7743da2fa5791e624b41ea1a749ccfa58a8f53 (patch)
tree5d9bffbb36b30a830159625e487c0789afb304ef /cli/man.cxx
parent381f872a76f6ad8fc5caee172e903f08dd652547 (diff)
Implement scope documentation generation in HTML
Diffstat (limited to 'cli/man.cxx')
-rw-r--r--cli/man.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/man.cxx b/cli/man.cxx
index b6fd7e8..d4ef7c5 100644
--- a/cli/man.cxx
+++ b/cli/man.cxx
@@ -50,7 +50,7 @@ namespace
translate_arg (
doc.size () > 0 ? doc[0] : string ("<arg>"), arg_set));
- os << ' ' << format (s, ot_man);
+ os << ' ' << format (ot_man, s, false);
}
os << "\"" << endl;
@@ -77,7 +77,7 @@ namespace
// Format the documentation string.
//
- d = format (translate (d, arg_set), ot_man);
+ d = format (ot_man, translate (d, arg_set), false);
if (!d.empty ())
{