summaryrefslogtreecommitdiffstats
path: root/mdoc_strings.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-08-20 13:32:09 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-08-20 13:32:09 +0000
commit249effff6ee7ce39e0089a50c172bd5a3fe59d2f (patch)
tree7e9516b0b3fbfc8a945f5d43f23ca49ab57c2070 /mdoc_strings.c
parent11d0b2cc56373cc444f62864c06cb23594bf5f66 (diff)
downloadmandoc-249effff6ee7ce39e0089a50c172bd5a3fe59d2f.tar.gz
Synchronised man.7, mdoc.7, mdoc.template manual structure.
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r--mdoc_strings.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c
index 13549a94..9c7d8b83 100644
--- a/mdoc_strings.c
+++ b/mdoc_strings.c
@@ -30,7 +30,7 @@ struct mdoc_secname {
enum mdoc_sec sec; /* Corresponding section. */
};
-#define SECNAME_MAX (18)
+#define SECNAME_MAX (20)
static const struct mdoc_secname secnames[SECNAME_MAX] = {
{ "NAME", SEC_NAME },
@@ -38,6 +38,7 @@ static const struct mdoc_secname secnames[SECNAME_MAX] = {
{ "SYNOPSIS", SEC_SYNOPSIS },
{ "DESCRIPTION", SEC_DESCRIPTION },
{ "IMPLEMENTATION NOTES", SEC_IMPLEMENTATION },
+ { "EXIT STATUS", SEC_EXIT_STATUS },
{ "RETURN VALUES", SEC_RETURN_VALUES },
{ "ENVIRONMENT", SEC_ENVIRONMENT },
{ "FILES", SEC_FILES },
@@ -51,6 +52,7 @@ static const struct mdoc_secname secnames[SECNAME_MAX] = {
{ "AUTHORS", SEC_AUTHORS },
{ "CAVEATS", SEC_CAVEATS },
{ "BUGS", SEC_BUGS },
+ { "SECURITY CONSIDERATIONS", SEC_SECURITY }
};
#ifdef __linux__