From fe200714381b9d81c222bda224df0dc6dfc61c8a Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 18 Jul 2011 07:46:41 +0000 Subject: 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. --- libmdoc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libmdoc.h') diff --git a/libmdoc.h b/libmdoc.h index 9cdf598b..8a5c2edd 100644 --- a/libmdoc.h +++ b/libmdoc.h @@ -40,6 +40,7 @@ struct mdoc { enum mdoc_sec lastnamed; enum mdoc_sec lastsec; struct regset *regs; /* registers */ + struct roff *roff; }; #define MACRO_PROT_ARGS struct mdoc *m, \ -- cgit