summaryrefslogtreecommitdiffstats
path: root/mdoc_strings.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-17 09:41:00 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-17 09:41:00 +0000
commitaa8ebdeebdc3218708b91a72e0b499258a3e5cef (patch)
tree9289cc60fcdaae8923bb814a216143646c215e13 /mdoc_strings.c
parentfdc3fdd6a6ddbc503a53564a3b4f607a0e7ca8c3 (diff)
downloadmandoc-aa8ebdeebdc3218708b91a72e0b499258a3e5cef.tar.gz
Noted deprecation of \*( and \* special-character escapes.
Minor clean-ups.
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r--mdoc_strings.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c
index 9a715a9e..d1781a98 100644
--- a/mdoc_strings.c
+++ b/mdoc_strings.c
@@ -24,15 +24,10 @@
#include "libmdoc.h"
-/*
- * Various string-literal operations: converting scalars to and from
- * strings, etc.
- */
-
struct mdoc_secname {
- const char *name;
+ const char *name; /* Name of section. */
int flag;
-#define MSECNAME_META (1 << 0)
+#define MSECNAME_META (1 << 0)/* Logical section (not real). */
};
/* Section names corresponding to mdoc_sec. */