X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/9fe5e084a133af51b7b2cfb5b057fccc5462d2db..767fc8584f19cfc0b04f9395f95211bfdae21acd:/man.h diff --git a/man.h b/man.h index 1bd7c672..6d9f3ced 100644 --- a/man.h +++ b/man.h @@ -1,4 +1,4 @@ -/* $Id: man.h,v 1.48 2010/12/08 10:58:22 kristaps Exp $ */ +/* $Id: man.h,v 1.52 2011/02/06 21:44:36 kristaps Exp $ */ /* * Copyright (c) 2009, 2010 Kristaps Dzonsons * @@ -66,7 +66,9 @@ enum man_type { MAN_ROOT, MAN_BLOCK, MAN_HEAD, - MAN_BODY + MAN_BODY, + MAN_TBL, + MAN_EQN }; /* @@ -95,12 +97,13 @@ struct man_node { enum mant tok; /* tok or MAN__MAX if none */ int flags; #define MAN_VALID (1 << 0) /* has been validated */ -#define MAN_ACTED (1 << 1) /* has been acted upon */ #define MAN_EOS (1 << 2) /* at sentence boundary */ +#define MAN_LINE (1 << 3) /* first macro/text on line */ enum man_type type; /* AST node type */ char *string; /* TEXT node argument */ struct man_node *head; /* BLOCK node HEAD ptr */ struct man_node *body; /* BLOCK node BODY ptr */ + const struct tbl_span *span; /* TBL */ }; /* @@ -118,6 +121,8 @@ struct man *man_alloc(struct regset *, void *, mandocmsg); void man_reset(struct man *); int man_parseln(struct man *, int, char *, int); int man_endparse(struct man *); +int man_addspan(struct man *, + const struct tbl_span *); const struct man_node *man_node(const struct man *); const struct man_meta *man_meta(const struct man *);