summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/html.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/html.cxx b/cli/html.cxx
index 8a9e97d..1f0c328 100644
--- a/cli/html.cxx
+++ b/cli/html.cxx
@@ -180,14 +180,10 @@ namespace
return;
}
- os << "<dl class=\"options\">" << endl;
-
if (!options.exclude_base ())
inherits (c, inherits_base_);
names (c, names_option_);
-
- os << "</dl>" << endl;
}
private:
@@ -215,5 +211,9 @@ generate_html (context& ctx)
ns >> ns_names >> ns;
ns_names >> cl;
+ ctx.os << "<dl class=\"options\">" << endl;
+
unit.dispatch (ctx.unit);
+
+ ctx.os << "</dl>" << endl;
}