summaryrefslogtreecommitdiffstats
path: root/mdoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-01-19 17:02:58 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-01-19 17:02:58 +0000
commitd427476d5c4b9bd0804fa51647671e6b18e07afa (patch)
tree675c6fd8ece9ed2898161248449bf80d77307b30 /mdoc.h
parentdd2076332ac7deafb5fe4ca97b255ce8964654fd (diff)
downloadmandoc-d427476d5c4b9bd0804fa51647671e6b18e07afa.tar.gz
Removed unnecessary test cases (most were for visual).
Finally fixed scope-rewinding (MDOC_VALID).
Diffstat (limited to 'mdoc.h')
-rw-r--r--mdoc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/mdoc.h b/mdoc.h
index 36fc31fd..dd6b1509 100644
--- a/mdoc.h
+++ b/mdoc.h
@@ -385,6 +385,9 @@ struct mdoc_node {
int line;
int pos;
int tok;
+ int flags;
+#define MDOC_VALID (1 << 0)
+#define MDOC_ACTED (1 << 1)
enum mdoc_type type;
union mdoc_data data;
};