diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-18 07:46:41 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-18 07:46:41 +0000 |
commit | fe200714381b9d81c222bda224df0dc6dfc61c8a (patch) | |
tree | 209bef8a4f53984c628091c1fad8b4817c290671 /libman.h | |
parent | bafe4939fd3c12ed13bf24cf2f317e39910722bb (diff) | |
download | mandoc-fe200714381b9d81c222bda224df0dc6dfc61c8a.tar.gz |
Make `struct roff' be passed into libmdoc and libman upon creation.
This is required for supporting in-line equations. While here, push
registers properly into roff and add an set/get/mod interface.
Diffstat (limited to 'libman.h')
-rw-r--r-- | libman.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -37,6 +37,7 @@ struct man { struct man_node *first; /* the first parsed node */ struct man_meta meta; /* document meta-data */ struct regset *regs; /* registers */ + struct roff *roff; }; #define MACRO_PROT_ARGS struct man *m, \ |