diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-17 09:41:00 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-17 09:41:00 +0000 |
commit | aa8ebdeebdc3218708b91a72e0b499258a3e5cef (patch) | |
tree | 9289cc60fcdaae8923bb814a216143646c215e13 /mdoc_strings.c | |
parent | fdc3fdd6a6ddbc503a53564a3b4f607a0e7ca8c3 (diff) | |
download | mandoc-aa8ebdeebdc3218708b91a72e0b499258a3e5cef.tar.gz |
Noted deprecation of \*( and \* special-character escapes.
Minor clean-ups.
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r-- | mdoc_strings.c | 9 |
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. */ |