summaryrefslogtreecommitdiffstatshomepage
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
commit90971a6744219e0420d00c5eadd1d04649c52f33 (patch)
tree01ad6e903d35e13f0131df375d9d645f61359673 /mdoc_strings.c
parent73377e54f90c1040c4b17ae5939192f4bd9ec73a (diff)
downloadmandoc-90971a6744219e0420d00c5eadd1d04649c52f33.tar.gz
mandoc-90971a6744219e0420d00c5eadd1d04649c52f33.tar.zst
mandoc-90971a6744219e0420d00c5eadd1d04649c52f33.zip
Noted deprecation of \*( and \* special-character escapes.
Minor clean-ups.
Diffstat (limited to 'mdoc_strings.c')
-rw-r--r--mdoc_strings.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/mdoc_strings.c b/mdoc_strings.c
index ba9701ef..58106391 100644
--- a/mdoc_strings.c
+++ b/mdoc_strings.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_strings.c,v 1.5 2009/06/15 09:38:37 kristaps Exp $ */
+/* $Id: mdoc_strings.c,v 1.6 2009/06/17 09:41:00 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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. */