summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r--src/mangen.cpp46
1 files changed, 36 insertions, 10 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp
index c6d7b9f..8812387 100644
--- a/src/mangen.cpp
+++ b/src/mangen.cpp
@@ -320,16 +320,6 @@ void ManGenerator::startDescList(SectionTypes)
startBold();
}
-void ManGenerator::startParamList(ParamListTypes)
-{
- if (!firstCol)
- { t << endl << ".PP" << endl;
- firstCol=TRUE; paragraph=TRUE;
- col=0;
- }
- paragraph=FALSE;
-}
-
void ManGenerator::startTitle()
{
if (!firstCol) t << endl;
@@ -582,4 +572,40 @@ void ManGenerator::endSection(const char *,bool sub)
}
}
+void ManGenerator::startSimpleSect(SectionTypes,const char *,
+ const char *,const char *title)
+{
+ if (!firstCol)
+ { t << endl << ".PP" << endl;
+ firstCol=TRUE; paragraph=TRUE;
+ col=0;
+ }
+ paragraph=FALSE;
+ startBold();
+ docify(title);
+ endBold();
+ paragraph=TRUE;
+}
+
+void ManGenerator::endSimpleSect()
+{
+}
+
+void ManGenerator::startParamList(ParamListTypes,const char *title)
+{
+ if (!firstCol)
+ { t << endl << ".PP" << endl;
+ firstCol=TRUE; paragraph=TRUE;
+ col=0;
+ }
+ paragraph=FALSE;
+ startBold();
+ docify(title);
+ endBold();
+ paragraph=TRUE;
+}
+
+void ManGenerator::endParamList()
+{
+}