summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc.h')
-rw-r--r--mdoc.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/mdoc.h b/mdoc.h
index 7301217b..1d8b0b0c 100644
--- a/mdoc.h
+++ b/mdoc.h
@@ -1,4 +1,4 @@
-/* $Id: mdoc.h,v 1.13 2009/01/03 18:38:39 kristaps Exp $ */
+/* $Id: mdoc.h,v 1.14 2009/01/05 16:11:14 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -265,6 +265,7 @@ enum mdoc_type {
MDOC_TEXT,
MDOC_ELEM,
MDOC_HEAD,
+ MDOC_TAIL,
MDOC_BODY,
MDOC_BLOCK
};
@@ -376,8 +377,10 @@ struct mdoc_block {
};
struct mdoc_head {
- size_t sz;
- char **args;
+ int tok;
+};
+
+struct mdoc_tail {
int tok;
};
@@ -398,6 +401,7 @@ union mdoc_data {
struct mdoc_elem elem;
struct mdoc_body body;
struct mdoc_head head;
+ struct mdoc_tail tail;
struct mdoc_block block;
};