summaryrefslogtreecommitdiff
path: root/cli/source.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/source.cxx')
-rw-r--r--cli/source.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/source.cxx b/cli/source.cxx
index 14a6a9a..57f5922 100644
--- a/cli/source.cxx
+++ b/cli/source.cxx
@@ -260,7 +260,7 @@ namespace
if (n > 1 && options.ansi_color ())
translate_arg (ds[0], arg_set);
- d = format (ds.scope (), ot_plain, translate (d, arg_set), true);
+ d = format (ds.scope (), translate (d, arg_set), true);
if (d.empty ())
return;
@@ -331,7 +331,7 @@ namespace
s = translate_arg (s, arg_set);
}
- l += txt_size (format (o.scope (), ot_plain, s, false));
+ l += txt_size (format (o.scope (), s, false));
}
if (l > length_)
@@ -422,7 +422,7 @@ namespace
if (color)
s = translate_arg (s, arg_set);
- s = format (o.scope (), ot_plain, s, false);
+ s = format (o.scope (), s, false);
os << escape_str (s);
l += txt_size (s);
@@ -458,7 +458,7 @@ namespace
if (color)
d = translate (d, arg_set);
- d = format (o.scope (), ot_plain, d, false);
+ d = format (o.scope (), d, false);
if (!d.empty ())
wrap_lines (os, d, length_ + 1, l); // +1 for extra space after arg.