summaryrefslogtreecommitdiff
path: root/cli/source.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/source.cxx')
-rw-r--r--cli/source.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/source.cxx b/cli/source.cxx
index d5c3fd3..19cdb82 100644
--- a/cli/source.cxx
+++ b/cli/source.cxx
@@ -208,7 +208,7 @@ namespace
l++; // ' ' seperator
if (doc.size () > 0)
- l += format (doc[0], ot_plain).size ();
+ l += format (ot_plain, doc[0], false).size ();
else
l += 5; // <arg>
}
@@ -268,7 +268,7 @@ namespace
if (doc.size () > 0)
{
- string s (format (doc[0], ot_plain));
+ string s (format (ot_plain, doc[0], false));
os << escape_str (s);
l += s.size ();
}
@@ -306,7 +306,7 @@ namespace
// Format the documentation string.
//
- d = format (d, ot_plain);
+ d = format (ot_plain, d, false);
if (!d.empty ())
{